Files
2024-11-29 11:54:27 +00:00

48 lines
1.0 KiB
Java

package security.library.encryption;
import java.util.Arrays;
import java.util.List;
import java.security.MessageDigest;
class Test {
List<String> badStrings = Arrays.asList(
"DES",
"des",
"des_function",
"function_using_des",
"EncryptWithDES",
"RC2",
"RC4",
"ARCFOUR",
"RC5",
"AES/ECB/NoPadding",
"AES/CBC/PKCS5Padding");
List<String> goodStrings = Arrays.asList(
"AES",
"AES_function",
// false negative - can't think of a good way to detect this without
// catching things we shouldn't
"AESEncryption");
List<String> unknownStrings = Arrays.asList(
// not a use of RC2 (camelCase is tricky)
"GetPrc2",
// not a use of DES
"Description",
// not a use of DES
"DESTROY",
// not a use of ECIES
"species",
// can't detect unknown algorithms
"SOMENEWACRONYM");
public static abstract class SomeDigest extends MessageDigest {
public SomeDigest() {
super("some");
}
}
public void test() throws Exception {
MessageDigest.getInstance("another");
}
}