KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > crypto > spec > PBEKeySpec

javax.crypto.spec
Class PBEKeySpec

java.lang.Object
  extended by 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  

Popular Tags