Package totalcross.crypto.provider
Class PBKDF2SecretKey
- java.lang.Object
-
- totalcross.crypto.provider.PBKDF2SecretKey
-
- All Implemented Interfaces:
java.io.Serializable,java.security.Key,javax.crypto.interfaces.PBEKey,javax.crypto.SecretKey,javax.security.auth.Destroyable
public class PBKDF2SecretKey extends java.lang.Object implements javax.crypto.interfaces.PBEKey- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAlgorithm()byte[]getEncoded()java.lang.StringgetFormat()intgetIterationCount()char[]getPassword()byte[]getSalt()
-
-
-
Method Detail
-
getAlgorithm
public java.lang.String getAlgorithm()
- Specified by:
getAlgorithmin interfacejava.security.Key
-
getFormat
public java.lang.String getFormat()
- Specified by:
getFormatin interfacejava.security.Key
-
getEncoded
public byte[] getEncoded()
- Specified by:
getEncodedin interfacejava.security.Key
-
getIterationCount
public int getIterationCount()
- Specified by:
getIterationCountin interfacejavax.crypto.interfaces.PBEKey
-
getPassword
public char[] getPassword()
- Specified by:
getPasswordin interfacejavax.crypto.interfaces.PBEKey
-
getSalt
public byte[] getSalt()
- Specified by:
getSaltin interfacejavax.crypto.interfaces.PBEKey
-
-