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

org.onetwo.common.encrypt.EncryptCoder Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.onetwo.common.encrypt;


public interface EncryptCoder {

	public byte[] getKey();
	
	public T generatedKey();

	public byte[] encrypt(byte[] encryptKey, byte[] byteContent);

	public byte[] dencrypt(byte[] dencryptKey, byte[] byteContent);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy