From 573dbb4019057a9ea33c8fd5f31380b799b8f650 Mon Sep 17 00:00:00 2001 From: "Keith W. Campbell" Date: Thu, 2 May 2024 15:14:32 -0400 Subject: [PATCH] Fix typo in reference to NativeECKeyPairGenerator Signed-off-by: Keith W. Campbell --- src/jdk.crypto.ec/share/classes/sun/security/ec/SunEC.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jdk.crypto.ec/share/classes/sun/security/ec/SunEC.java b/src/jdk.crypto.ec/share/classes/sun/security/ec/SunEC.java index 87385f1dea0..0726c17f1d3 100644 --- a/src/jdk.crypto.ec/share/classes/sun/security/ec/SunEC.java +++ b/src/jdk.crypto.ec/share/classes/sun/security/ec/SunEC.java @@ -25,7 +25,7 @@ /* * =========================================================================== - * (c) Copyright IBM Corp. 2022, 2023 All Rights Reserved + * (c) Copyright IBM Corp. 2022, 2024 All Rights Reserved * =========================================================================== */ @@ -475,7 +475,7 @@ void putEntries() { && !isAIX ) { putService(new ProviderServiceA(this, "KeyPairGenerator", - "EC", "sun.security.ec.NaticeECKeyPairGenerator", ATTRS)); + "EC", "sun.security.ec.NativeECKeyPairGenerator", ATTRS)); } else { putService(new ProviderServiceA(this, "KeyPairGenerator", "EC", "sun.security.ec.ECKeyPairGenerator", ATTRS));