org.apache.wicket.util.crypt |
wicket.markup.html.form.encryption package
Encryption support for forms.
|
Java Source File Name | Type | Comment |
AbstractCrypt.java | Class | Abstract base class for JCE based ICrypt implementations. |
Base64.java | Class | Provides Base64 encoding and decoding as defined by RFC 2045.
This class is taken from the Apache commons-codec, and adjusted to fit the
Wicket framework's needs, especially external dependencies have been removed.
This class implements section 6.8. |
Base64Test.java | Class | |
Base64UrlSafe.java | Class | Provides Base64 encoding and decoding with URL and filename safe alphabet
as defined by RFC 3548, section 4.
This Base64 encoder is modified to meet URL requirements. |
CachingSunJceCryptFactory.java | Class | Default crypt factory. |
ClassCryptFactory.java | Class | Crypt factory that creates the
ICrypt object by instantiating a
provided class. |
CryptFactoryCachingDecorator.java | Class | |
ICrypt.java | Interface | Encryption and decryption implementations are accessed through this
interface. |
ICryptFactory.java | Interface | |
NoCrypt.java | Class | Due to legal reasons in some countries the JRE is shipped without a security
provider. |
NoCryptFactory.java | Class | |
SunJceCrypt.java | Class | Provide some simple means to encrypt and decrypt strings such as passwords. |
TrivialCrypt.java | Class | THIS CLASS IS FOR TESTING PURPOSES ONLY. |