Skip to content

Instantly share code, notes, and snippets.

@rjmcguire
Forked from jehrhardt/KeyLengthDetector.java
Created October 24, 2016 14:57
Show Gist options
  • Save rjmcguire/f1bded211cab99bcd7d00aa3741ac8c8 to your computer and use it in GitHub Desktop.
Save rjmcguire/f1bded211cab99bcd7d00aa3741ac8c8 to your computer and use it in GitHub Desktop.
Detect the allowed size of AES keys on the JVM. If the size is <= 256, it is limited. To fix it JCE unlimted stregth files are needed.
import javax.crypto.Cipher;
import java.security.NoSuchAlgorithmException;
public class KeyLengthDetector {
public static void main(String[] args) {
int allowedKeyLength = 0;
try {
allowedKeyLength = Cipher.getMaxAllowedKeyLength("AES");
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
System.out.println("The allowed key length for AES is: " + allowedKeyLength);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment