I hereby claim:
- I am spikesdivzero on github.
- I am spikes (https://keybase.io/spikes) on keybase.
- I have a public key ASCKNe7VRzAke5Sxbirjl--senBwMBqD4UVDE3jsmIVW1go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # http://stackoverflow.com/questions/8730514/chaining-git-hooks | |
| # author: orefalo | |
| hookname=`basename $0` | |
| FILE=`mktemp` | |
| trap 'rm -f $FILE' EXIT | |
| cat - > $FILE |
| 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) { |