Encryption.java

29 lines | 578 B Blame History Raw Download
package com.salesmanager.core.modules.utils;

/**
 * Can be used to encrypt block or information that has to
 * be maintained secret
 * @author Carl Samson
 *
 */
public interface Encryption {
	

	/**
	 * Encrypts a string value
	 * @param value VALUE
	 * @return String encrypted string
	 * @throws Exception cannot encrypt
	 */
	public String encrypt(String value) throws Exception;
	
	/**
	 * Decrypts a string value
	 * @param value VLUE
	 * @return String encrypted string
	 * @throws Exception cannot encrypt
	 */
	public String decrypt(String value) throws Exception;

}