Add missing broken crypto algorithms

This commit is contained in:
luchua-bc
2020-12-16 04:29:23 +00:00
parent 9ff6d68a9b
commit d7facb42d6
4 changed files with 10 additions and 3 deletions

View File

@@ -10,7 +10,10 @@ class Test {
"des",
"des_function",
"function_using_des",
"EncryptWithDES");
"EncryptWithDES",
"AES/ECB/NoPadding",
"AES/CBC/PKCS5Padding");
List<String> goodStrings = Arrays.asList(
"AES",

View File

@@ -3,3 +3,5 @@
| Test.java:11:4:11:17 | "des_function" |
| Test.java:12:4:12:23 | "function_using_des" |
| Test.java:13:4:13:19 | "EncryptWithDES" |
| Test.java:14:4:14:22 | "AES/ECB/NoPadding" |
| Test.java:15:4:15:25 | "AES/CBC/PKCS5Padding" |