javax.crypto.spec
public class: PBEParameterSpec [javadoc |
source]
java.lang.Object
javax.crypto.spec.PBEParameterSpec
All Implemented Interfaces:
AlgorithmParameterSpec
This class specifies the set of parameters used with password-based
encryption (PBE), as defined in the
PKCS #5
standard.
- author:
Jan - Luehe
- since:
1.4 -
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.crypto.spec.PBEParameterSpec Detail: |
public int getIterationCount() {
return this.iterationCount;
}
Returns the iteration count. |
public byte[] getSalt() {
return (byte[])this.salt.clone();
}
|