(byte[] input, byte[] key)
| 108 | } |
| 109 | |
| 110 | public static byte[] encryptAES(byte[] input, byte[] key) |
| 111 | throws InvalidCipherTextException { |
| 112 | return _cryptBytesAES(input, key, true); |
| 113 | } |
| 114 | |
| 115 | public static byte[] decryptAES(byte[] input, byte[] key) |
| 116 | throws InvalidCipherTextException { |
no test coverage detected