public interface PbeParameters extends EncryptionParameters
Unless stated otherwise, all no-argument methods need to return consistent objects so that caching them is not required. A returned object is considered to be consistent if it compares equal or at least behaves identical to any previously returned object.
| Modifier and Type | Method and Description |
|---|---|
String |
algorithm()
Returns the PBE algorithm.
|
char[] |
password()
Returns a new char array with the password used to generate a secret key
for encryption/decryption.
|
String algorithm()
char[] password()
It is the caller's responsibility to wipe the contents of the char array
after use, e.g. by a call to Arrays.fill(char[], char).
Copyright © 2005–2017 Schlichtherle IT Services. All rights reserved.