Package org.jasypt.util.text
Interface TextEncryptor
-
- All Known Implementing Classes:
AES256TextEncryptor
,BasicTextEncryptor
,StrongTextEncryptor
public interface TextEncryptor
Common interface for all util classes aimed at text encryption
- Since:
- 1.2
- Author:
- Daniel Fernández
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
decrypt(String encryptedMessage)
Decrypts a message.String
encrypt(String message)
Encrypts a message.
-