Class DefaultEncryptor
java.lang.Object
org.apache.syncope.core.spring.security.DefaultEncryptor
- All Implemented Interfaces:
Encryptor
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static final String
protected final Map
<CipherAlgorithm, org.jasypt.digest.StandardStringDigester> protected SecretKeySpec
protected static final Logger
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondecode
(String encoded, CipherAlgorithm cipherAlgorithm) encode
(String value, CipherAlgorithm cipherAlgorithm) boolean
verify
(String value, CipherAlgorithm cipherAlgorithm, String encoded)
-
Field Details
-
LOG
-
DEFAULT_SECRET_KEY
- See Also:
-
digesters
-
keySpec
-
-
Constructor Details
-
DefaultEncryptor
-
-
Method Details
-
encode
public String encode(String value, CipherAlgorithm cipherAlgorithm) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException - Specified by:
encode
in interfaceEncryptor
- Throws:
NoSuchAlgorithmException
NoSuchPaddingException
InvalidKeyException
IllegalBlockSizeException
BadPaddingException
-
verify
-
decode
public String decode(String encoded, CipherAlgorithm cipherAlgorithm) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException - Specified by:
decode
in interfaceEncryptor
- Throws:
NoSuchAlgorithmException
NoSuchPaddingException
InvalidKeyException
IllegalBlockSizeException
BadPaddingException
-