Package javax.crypto.spec
Class PBEParameterSpec
- java.lang.Object
-
- javax.crypto.spec.PBEParameterSpec
-
- All Implemented Interfaces:
AlgorithmParameterSpec
public class PBEParameterSpec extends Object implements AlgorithmParameterSpec
The algorithm parameter specification for a password based encryption algorithm.Password based encryption is described in PKCS #5.
-
-
Constructor Summary
Constructors Constructor Description PBEParameterSpec(byte[] salt, int iterationCount)Creates a newPBEParameterSpecwith the specified salt and iteration count.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIterationCount()Returns the iteration count.byte[]getSalt()Returns a copy to the salt.
-
-
-
Constructor Detail
-
PBEParameterSpec
public PBEParameterSpec(byte[] salt, int iterationCount)Creates a newPBEParameterSpecwith the specified salt and iteration count.- Parameters:
salt- the salt.iterationCount- the iteration count.- Throws:
NullPointerException- if salt is null.
-
-