Destroyable
, Key
, SecretKey
, Serializable
public interface PBEKey extends SecretKey
Modifier and Type | Field | Description |
---|---|---|
static final long |
serialVersionUID |
Deprecated. |
Modifier and Type | Method | 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. |
destroy, isDestroyed
getAlgorithm, getEncoded, getFormat
@Deprecated static final long serialVersionUID
serialVersionUID
field in an interface is ineffectual. Do not use; no replacement.char[] getPassword()
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()
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()
© 1993, 2023, 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/en/java/javase/21/docs/api/java.base/javax/crypto/interfaces/PBEKey.html
serialVersionUID
field in an interface is ineffectual.