List of usage examples for org.apache.wicket.util.crypt AbstractCrypt subclass-usage
From source file com.servoy.j2db.server.headlessclient.CachingSunJceCrypt.java
/**
* Provide some simple means to encrypt and decrypt strings such as passwords. The whole
* implementation is based around Sun's security providers and uses the <a
* href="http://www.semoa.org/docs/api/cdc/standard/pbe/PBEWithMD5AndDES.html">PBEWithMD5AndDES</a>
* method to encrypt and decrypt the data.
*
From source file sf.wicklet.ext.application.AESCrypt.java
public class AESCrypt extends AbstractCrypt { private static class Lazy { static final Cipher cipher; static final KeyGenerator gen; static final SecretKey key;