Cipherer cipher = (Cipherer) context.getAttribute(Cipherer.CIPHERER, 2);
String encoded = cipher.encrypt(code);
if (logger.isDebugEnabled()) logger.debug("Ciphered [" + code + "] to [" + encoded + "] in view");
out.print(encoded);
} catch (java.io.IOException ex) {
throw new JspException(ex.getMessage());
}
}