Interface PBEKey
- All Superinterfaces:
- Destroyable, Key, SecretKey, Serializable
public interface PBEKey extends SecretKey
The interface to a PBE key.
- Since:
- 1.4
- See Also:
-
PBEKeySpec
,SecretKey
Fields
Modifier and Type | Field and Description |
---|---|
static long |
serialVersionUID The class fingerprint that is set to indicate serialization compatibility since J2SE 1.4. |
Methods
Modifier and Type | Method and Description |
---|---|
int |
getIterationCount() Returns the iteration count or 0 if not specified. |
char[] |
getPassword() Returns the password. |
byte[] |
getSalt() Returns the salt or null if not specified. |
Methods inherited from interface java.security.Key
getAlgorithm, getEncoded, getFormat
Methods inherited from interface javax.security.auth.Destroyable
destroy, isDestroyed
Fields
serialVersionUID
static final long serialVersionUID
The class fingerprint that is set to indicate serialization compatibility since J2SE 1.4.
- See Also:
- Constant Field Values
Methods
getPassword
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.
- Returns:
- the password.
getSalt
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.
- Returns:
- the salt.
getIterationCount
int getIterationCount()
Returns the iteration count or 0 if not specified.
- Returns:
- the iteration count.
© 1993, 2020, 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.
https://docs.oracle.com/javase/8/docs/api/javax/crypto/interfaces/PBEKey.html