Bouncy Castle Cryptography 1.11 API Specification: Class PBKDF2Params
Bouncy Castle Cryptography 1.11

org.bouncycastle.asn1.pkcs
Class PBKDF2Params

java.lang.Object
  |
  +--org.bouncycastle.asn1.x509.AlgorithmIdentifier
        |
        +--org.bouncycastle.asn1.pkcs.KeyDerivationFunc
              |
              +--org.bouncycastle.asn1.pkcs.PBKDF2Params
All Implemented Interfaces:
DEREncodable

public class PBKDF2Params
extends KeyDerivationFunc


Method Summary
 DERObject getDERObject()
           AlgorithmIdentifier ::= SEQUENCE { algorithm OBJECT IDENTIFIER, parameters ANY DEFINED BY algorithm OPTIONAL }
 java.math.BigInteger getIterationCount()
           
 java.math.BigInteger getKeyLength()
           
 byte[] getSalt()
           
 
Methods inherited from class org.bouncycastle.asn1.x509.AlgorithmIdentifier
equals, getObjectId, getParameters
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getSalt

public byte[] getSalt()

getIterationCount

public java.math.BigInteger getIterationCount()

getKeyLength

public java.math.BigInteger getKeyLength()

getDERObject

public DERObject getDERObject()
Description copied from class: AlgorithmIdentifier
      AlgorithmIdentifier ::= SEQUENCE {
                            algorithm OBJECT IDENTIFIER,
                            parameters ANY DEFINED BY algorithm OPTIONAL }
 
Overrides:
getDERObject in class AlgorithmIdentifier

Bouncy Castle Cryptography 1.11