Skip to content

Commit

Permalink
8343848: Fix typo of property name in TestOAEPPadding after 8341927
Browse files Browse the repository at this point in the history
Reviewed-by: lucy, mullan
  • Loading branch information
GoeLin committed Nov 9, 2024
1 parent 2614c99 commit 325a2c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static void main(String args[]) throws Exception {
System.getProperty("test.provider.name", "SunJCE"));
System.out.println("Testing provider " + cp.getName() + "...");
Provider kfp = Security.getProvider(
System.getProperty("test.providername", "SunRsaSign"));
System.getProperty("test.provider.name", "SunRsaSign"));
String kpgAlgorithm = "RSA";
KeyPairGenerator kpg = KeyPairGenerator.getInstance(kpgAlgorithm, kfp);
kpg.initialize(SecurityUtils.getTestKeySize(kpgAlgorithm));
Expand Down

0 comments on commit 325a2c3

Please sign in to comment.