java.lang.Object
javax.crypto.spec.PBEKeySpec
- All Implemented Interfaces:
- KeySpec
- See Also:
- Top Examples, Source Code,
SecretKeyFactory
,
PBEParameterSpec
public final void clearPassword()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final int getIterationCount()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final int getKeyLength()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final char[] getPassword()
- See Also:
- IllegalStateException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final byte[] getSalt()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public PBEKeySpec(char[] password)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public PBEKeySpec(char[] password,
byte[] salt,
int iterationCount)
- See Also:
- IllegalArgumentException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public PBEKeySpec(char[] password,
byte[] salt,
int iterationCount,
int keyLength)
- See Also:
- IllegalArgumentException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples