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

tech.rsqn.useful.things.encryption.EncryptionTool Maven / Gradle / Ivy

There is a newer version: 1.0.78
Show newest version
package tech.rsqn.useful.things.encryption;

public interface EncryptionTool {

    String getAlias();

    void setCharSet(String charSet);
//    void setKey(byte[] keyBytes);

    byte[] encrypt(byte[] plainText);

    byte[] decrypt(byte[] cryptText);

    String encode(String plainText);

    String decode(String encodedText);


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy