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

Constructor Index

 o PBEParameterSpec(byte[], int)

Method Index

 o getIterationCount()
Returns the iteration count.
 o getSalt()
Returns the salt.

Constructors

 o PBEParameterSpec
 public PBEParameterSpec(byte salt[],
                         int iterationCount)

Methods

 o getSalt
 public byte[] getSalt()
Returns the salt.

Returns:
the salt
 o getIterationCount
 public int getIterationCount()
Returns the iteration count.

Returns:
the iteration count

All Packages  Class Hierarchy  This Package  Previous  Next  Index