(final boolean encrypting, final byte[] key)
| 304 | } |
| 305 | |
| 306 | public void init(final boolean encrypting, final byte[] key) { |
| 307 | this.encrypting = encrypting; |
| 308 | this.workingKey = key; |
| 309 | setKey(this.workingKey); |
| 310 | } |
| 311 | |
| 312 | public byte[] encrypt(final String input) { |
| 313 | try { |
no test coverage detected