File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/jdk/sun/security/pkcs11/Cipher Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public void main(Provider p) throws Exception {
7777 KeyGenerator .getInstance (currTest .keyAlgo , p );
7878 SecretKey key = kg .generateKey ();
7979 Cipher c1 = Cipher .getInstance (currTest .transformation ,
80- System .getProperty ("test.provider.name" , "SunJCE" ));
80+ System .getProperty ("test.provider.name" , "SunJCE" ));
8181 c1 .init (Cipher .ENCRYPT_MODE , key );
8282 byte [] cipherText = c1 .doFinal (plainText );
8383 AlgorithmParameters params = c1 .getParameters ();
@@ -113,7 +113,7 @@ public void main(Provider p) throws Exception {
113113 System .out .println ("DONE" );
114114 } catch (NoSuchAlgorithmException nsae ) {
115115 System .out .println ("Skipping unsupported algorithm: " +
116- nsae );
116+ nsae );
117117 }
118118 }
119119 } catch (Exception ex ) {
You can’t perform that action at this time.
0 commit comments