Package org.gudy.bouncycastle.asn1.pkcs
Class PBKDF2Params
- java.lang.Object
-
- org.gudy.bouncycastle.asn1.ASN1Encodable
-
- org.gudy.bouncycastle.asn1.x509.AlgorithmIdentifier
-
- org.gudy.bouncycastle.asn1.pkcs.KeyDerivationFunc
-
- org.gudy.bouncycastle.asn1.pkcs.PBKDF2Params
-
- All Implemented Interfaces:
DEREncodable
public class PBKDF2Params extends KeyDerivationFunc
-
-
Field Summary
Fields Modifier and Type Field Description (package private) DERObjectIdentifier
id
(package private) DERInteger
iterationCount
(package private) DERInteger
keyLength
(package private) ASN1OctetString
octStr
-
Fields inherited from class org.gudy.bouncycastle.asn1.ASN1Encodable
BER, DER
-
-
Constructor Summary
Constructors Constructor Description PBKDF2Params(ASN1Sequence seq)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DERObject
getDERObject()
java.math.BigInteger
getIterationCount()
java.math.BigInteger
getKeyLength()
byte[]
getSalt()
-
Methods inherited from class org.gudy.bouncycastle.asn1.x509.AlgorithmIdentifier
getInstance, getInstance, getObjectId, getParameters, toASN1Object
-
Methods inherited from class org.gudy.bouncycastle.asn1.ASN1Encodable
equals, getDEREncoded, getEncoded, getEncoded, hashCode
-
-
-
-
Field Detail
-
id
DERObjectIdentifier id
-
octStr
ASN1OctetString octStr
-
iterationCount
DERInteger iterationCount
-
keyLength
DERInteger keyLength
-
-
Constructor Detail
-
PBKDF2Params
PBKDF2Params(ASN1Sequence seq)
-
-
Method Detail
-
getSalt
public byte[] getSalt()
-
getIterationCount
public java.math.BigInteger getIterationCount()
-
getKeyLength
public java.math.BigInteger getKeyLength()
-
getDERObject
public DERObject getDERObject()
- Specified by:
getDERObject
in interfaceDEREncodable
- Overrides:
getDERObject
in classASN1Encodable
-
-