(byte[] input, byte[] key)
| 113 | } |
| 114 | |
| 115 | public static byte[] decryptAES(byte[] input, byte[] key) |
| 116 | throws InvalidCipherTextException { |
| 117 | return _cryptBytesAES(input, key, false); |
| 118 | } |
| 119 | |
| 120 | // h/t Steve Weis, Michael Rogers, and liberationtech |
| 121 | private static byte[] _cryptBytesAES(byte[] input, byte[] key, |
no test coverage detected