Skip to content

Commit 4a2ee59

Browse files
authored
Update TestPKCS5PaddingError.java
1 parent 32c027b commit 4a2ee59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/jdk/sun/security/pkcs11/Cipher/TestPKCS5PaddingError.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)