Example usage for org.apache.wicket.util.crypt ICrypt interface-usage

List of usage examples for org.apache.wicket.util.crypt ICrypt interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.util.crypt ICrypt interface-usage.

Usage

From source file name.martingeisse.admin.application.wicket.BrokenCryptFactory.java

/**
 * This factory generates {@link ICrypt} objects which just throw an
 * exception when trying to use them. This makes sure that no code
 * relies on encryption when in fact we don't have proper encryption
 * support.
 * 

From source file org.jasypt.wicket.JasyptCrypt.java

/**
 * <p>
 * Jasypt's implementation of {@link ICrypt}, based on the use of a 
 * {@link PBEByteEncryptor} object for encryption and decryption operations.
 * </p>
 * <p>

From source file org.jasypt.wicket13.JasyptCrypt.java

/**
 * <p>
 * Jasypt's implementation of {@link ICrypt}, based on the use of a 
 * {@link PBEByteEncryptor} object for encryption and decryption operations.
 * </p>
 * <p>

From source file org.jasypt.wicket15.JasyptCrypt.java

/**
 * <p>
 * Jasypt's implementation of {@link ICrypt}, based on the use of a 
 * {@link PBEByteEncryptor} object for encryption and decryption operations.
 * </p>
 * <p>

From source file sf.wicklet.ext.application.IWickletCrypt.java

public interface IWickletCrypt extends ICrypt {
    /**
     * Preliminary check to see if parameter is encrypted page component info.
     * @return true if input may be an encrypted page component info, false if input is definitely not.
     */
    boolean isEncrypt(String s);