(byte[] input)
| 80 | } |
| 81 | |
| 82 | public byte[] decrypt(byte[] input){ |
| 83 | try { |
| 84 | return cipher2.doFinal(input); |
| 85 | } catch (IllegalBlockSizeException | BadPaddingException e) { |
| 86 | e.printStackTrace(); |
| 87 | System.exit(2); |
| 88 | } |
| 89 | return input; |
| 90 | } |
| 91 | |
| 92 | public byte[] decrypt(byte[] input,int len){ |
| 93 | return decrypt(input,0,len); |
no test coverage detected