public interface PBEKey extends SecretKey
The interface to a PBE key.
PBEKeySpec
, SecretKey
static final long serialVersionUID
The class fingerprint that is set to indicate serialization compatibility since J2SE 1.4.
char[] getPassword()
Returns the password.
Note: this method should return a copy of the password. It is the caller's responsibility to zero out the password information after it is no longer needed.
byte[] getSalt()
Returns the salt or null if not specified.
Note: this method should return a copy of the salt. It is the caller's responsibility to zero out the salt information after it is no longer needed.
int getIterationCount()
Returns the iteration count or 0 if not specified.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.