Skip to content

Instantly share code, notes, and snippets.

@zukka77
Forked from jehrhardt/KeyLengthDetector.java
Created February 25, 2016 20:06
Show Gist options
  • Save zukka77/774bda77d17ceabfbe7d to your computer and use it in GitHub Desktop.
Save zukka77/774bda77d17ceabfbe7d 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