Skip to content

Commit 325a2c3

Browse files
committed
8343848: Fix typo of property name in TestOAEPPadding after 8341927
Reviewed-by: lucy, mullan
1 parent 2614c99 commit 325a2c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/jdk/com/sun/crypto/provider/Cipher/RSA/TestOAEPPadding.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public static void main(String args[]) throws Exception {
5757
System.getProperty("test.provider.name", "SunJCE"));
5858
System.out.println("Testing provider " + cp.getName() + "...");
5959
Provider kfp = Security.getProvider(
60-
System.getProperty("test.providername", "SunRsaSign"));
60+
System.getProperty("test.provider.name", "SunRsaSign"));
6161
String kpgAlgorithm = "RSA";
6262
KeyPairGenerator kpg = KeyPairGenerator.getInstance(kpgAlgorithm, kfp);
6363
kpg.initialize(SecurityUtils.getTestKeySize(kpgAlgorithm));

0 commit comments

Comments
 (0)