public interface CustomPasswordEncryption
| Modifier and Type | Method and Description |
|---|---|
byte[] |
decrypt(EncryptedInfo info)
The decrypt operation takes the EncryptedInfo object containing a byte[]
and the logical key alias and converts it to the decrypted byte[].
|
EncryptedInfo |
encrypt(byte[] decrypted_bytes)
The encrypt operation takes a UTF-8 encoded String in the form of a byte[].
|
void |
initialize(java.util.Map initialization_data)
This is reserved for future use and is currently not called by the
WebSphere Application Server runtime.
|
EncryptedInfo encrypt(byte[] decrypted_bytes) throws PasswordEncryptException
decrypted_bytes - PasswordEncryptExceptionbyte[] decrypt(EncryptedInfo info) throws PasswordDecryptException
info - PasswordDecryptExceptionvoid initialize(java.util.Map initialization_data)
initialization_data -