All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.anysoft.util.code.Coder Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.anysoft.util.code;


/**
 * 
 * SDA编码/解码器
 * 
 * @author duanyy
 * 
 */
public interface Coder {
	
	/**
	 * 编码
	 * @param data 原始数据
	 * @param key 加密密钥
	 * @return 编码后的数据
	 */
	public String encode(String data,String key);
	
	/**
	 * 解码
	 * @param data 编码数据
	 * @param key 解密密钥
	 * @return 解码后的数据
	 */
	public String decode(String data,String key);
	
	/**
	 * 生成key
	 * @return key
	 */
	public String createKey();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy