public class PBEParameterSpec extends Object implements AlgorithmParameterSpec
This class specifies the set of parameters used with password-based encryption (PBE), as defined in the PKCS #5 standard.
public PBEParameterSpec(byte[] salt, int iterationCount)
Constructs a parameter set for password-based encryption as defined in the PKCS #5 standard.
salt
- the salt. The contents of salt
are copied to protect against subsequent modification.iterationCount
- the iteration count.NullPointerException
- if salt
is null.public PBEParameterSpec(byte[] salt, int iterationCount, AlgorithmParameterSpec paramSpec)
Constructs a parameter set for password-based encryption as defined in the PKCS #5 standard.
salt
- the salt. The contents of salt
are copied to protect against subsequent modification.iterationCount
- the iteration count.paramSpec
- the cipher algorithm parameter specification, which may be null.NullPointerException
- if salt
is null.public byte[] getSalt()
Returns the salt.
public int getIterationCount()
Returns the iteration count.
public AlgorithmParameterSpec getParameterSpec()
Returns the cipher algorithm parameter specification.
© 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.