Skip to content

Commit 3ff2484

Browse files
author
Jai Prakash
committed
RC6 algorithm name is fixed | Jai
1 parent 32d853b commit 3ff2484

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/encryption/RC6.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class RC6 {
1515
static {
1616
Security.addProvider(new BouncyCastleProvider());
1717
}
18-
private static String ALGORITHM_NAME = "RC5";
18+
private static String ALGORITHM_NAME = "RC6";
1919
private static String MODE_OF_OPERATION = "ECB";
2020
private static String PADDING_SCHEME = "PKCS5Padding" ;
2121
private static SecretKey secretKey;

0 commit comments

Comments
 (0)