All Packages Class Hierarchy This Package Previous Next Index
Class javax.crypto.spec.PBEParameterSpec
java.lang.Object
|
+----javax.crypto.spec.PBEParameterSpec
- 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.
- See Also:
- AlgorithmParameterSpec
-
ident
-
-
PBEParameterSpec(byte[], int)
- basic constructor
-
getIterationCount()
- Returns the iteration count.
-
getSalt()
- Returns the salt.
ident
public static final String ident
PBEParameterSpec
public PBEParameterSpec(byte salt[],
int iterationCount)
- basic constructor
- Parameters:
- salt - the byte array to use as a salt.
- iterationCount - the iterationCount.
getSalt
public byte[] getSalt()
- Returns the salt.
- Returns:
- the salt.
getIterationCount
public int getIterationCount()
- Returns the iteration count.
- Returns:
- the iteration count
All Packages Class Hierarchy This Package Previous Next Index