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:
- java.security.spec.AlgorithmParameterSpec
PBEParameterSpec(byte[], int)
-
getIterationCount()
- Returns the iteration count.
getSalt()
- Returns the salt.
PBEParameterSpec
public PBEParameterSpec(byte[] salt,
int 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