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

Variable Index

 o ident

Constructor Index

 o PBEParameterSpec(byte[], int)
basic constructor

Method Index

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

Variables

 o ident
 public static final String ident

Constructors

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

Parameters:
salt - the byte array to use as a salt.
iterationCount - the 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