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.HashMap 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
byte[]
- PasswordEncryptException
byte[] decrypt(EncryptedInfo info) throws PasswordDecryptException
com.ibm.wsspi.security.crypto.EncryptedInfo
- PasswordDecryptException
void initialize(java.util.HashMap initialization_data)
java.util.HashMap
-