69707172737475767778
try { cipher = getCipher(Cipher.ENCRYPT_MODE); return cipher.doFinal(plaintext); } catch (Exception e) { throw new SessionEncoderException("Failed to encrypt object", e); } finally { returnCipher(Cipher.ENCRYPT_MODE, cipher); } }
82838485868788899091
try { cipher = getCipher(Cipher.DECRYPT_MODE); return cipher.doFinal(cryptotext); } catch (Exception e) { throw new SessionEncoderException("Failed to decrypt object", e); } finally { returnCipher(Cipher.DECRYPT_MODE, cipher); } }