
ch.inftec.ju.security.JuTextEncryptor Maven / Gradle / Ivy
package ch.inftec.ju.security;
/**
* Interface for text encryption and decryption.
*
* Similar to org.jasypt.util.text.TextEncryptor
* @author [email protected]
*
*/
public interface JuTextEncryptor {
/**
* Encrypts a message.
*
* @param message the message to be encrypted.
*/
public String encrypt(String message);
/**
* Decrypts a message.
*
* @param encryptedMessage the message to be decrypted.
*/
public String decrypt(String encryptedMessage);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy