Interface Encryptor
- All Known Implementing Classes:
DefaultEncryptor
public interface Encryptor
-
Method Summary
Modifier and TypeMethodDescriptiondecode
(String encoded, CipherAlgorithm cipherAlgorithm) encode
(String value, CipherAlgorithm cipherAlgorithm) boolean
verify
(String value, CipherAlgorithm cipherAlgorithm, String encoded)
-
Method Details
-
encode
String encode(String value, CipherAlgorithm cipherAlgorithm) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException -
verify
-
decode
String decode(String encoded, CipherAlgorithm cipherAlgorithm) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException
-