tech.rsqn.useful.things.encryption.EncryptionTool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-utilities Show documentation
Show all versions of application-utilities Show documentation
A collection of heavier utilities used by rsqn.tech opensource projects.
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