public interface StringEncryptor
Common interface for all Encryptors which receive a String message and return a String result.
Modifier and Type | Method and Description |
---|---|
String |
decrypt(String encryptedMessage)
Decrypt an encrypted message
|
String |
encrypt(String message)
Encrypt the input message
|
String encrypt(String message)
message
- the message to be encryptedString decrypt(String encryptedMessage)
encryptedMessage
- the encrypted message to be decryptedCopyright © 2020 The JASYPT team. All Rights Reserved.