javax.crypto.spec
public class PBEParameterSpec extends Object implements AlgorithmParameterSpec
Since: 1.4
| Constructor Summary | |
|---|---|
| PBEParameterSpec(byte[] salt, int iterationCount)
Creates a new password-based encryption parameter specification.
| |
| Method Summary | |
|---|---|
| int | getIterationCount()
Get the iteration count.
|
| byte[] | getSalt()
Get the salt.
|
Parameters: salt The salt. iterationCount The iteration count.
Returns: The iteration count.
Returns: The salt.