org.onetwo.common.encrypt.EncryptCoder Maven / Gradle / Ivy
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