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); } }
8990919293949596
encodedValue = StringEscapeUtil.escapeURL(encodedValue, getCharset()); } return encodedValue; } catch (Exception e) { throw new SessionEncoderException("Failed to encode single value", e); } }
108109110111112113114115
.getBytes("8859_1")))), "UTF-8"); } return decodeValue(encodedValue); } catch (Exception e) { throw new SessionEncoderException("Failed to decode single value", e); } }
68697071727374757677
81828384858687888990
8889909192939495
107108109110111112113114