Class PBKDF2ParameterType
- java.lang.Object
-
- org.apache.xml.security.binding.xmlenc11.PBKDF2ParameterType
-
public class PBKDF2ParameterType extends java.lang.ObjectJava class for PBKDF2ParameterType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PBKDF2ParameterType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Salt"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="Specified" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> <element name="OtherSource" type="{http://www.w3.org/2009/xmlenc11#}AlgorithmIdentifierType"/> </choice> </restriction> </complexContent> </complexType> </element> <element name="IterationCount" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> <element name="KeyLength" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> <element name="PRF" type="{http://www.w3.org/2009/xmlenc11#}PRFAlgorithmIdentifierType"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPBKDF2ParameterType.SaltJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected java.math.BigIntegeriterationCountprotected java.math.BigIntegerkeyLengthprotected PRFAlgorithmIdentifierTypeprfprotected PBKDF2ParameterType.Saltsalt
-
Constructor Summary
Constructors Constructor Description PBKDF2ParameterType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigIntegergetIterationCount()Gets the value of the iterationCount property.java.math.BigIntegergetKeyLength()Gets the value of the keyLength property.PRFAlgorithmIdentifierTypegetPRF()Gets the value of the prf property.PBKDF2ParameterType.SaltgetSalt()Gets the value of the salt property.voidsetIterationCount(java.math.BigInteger value)Sets the value of the iterationCount property.voidsetKeyLength(java.math.BigInteger value)Sets the value of the keyLength property.voidsetPRF(PRFAlgorithmIdentifierType value)Sets the value of the prf property.voidsetSalt(PBKDF2ParameterType.Salt value)Sets the value of the salt property.
-
-
-
Field Detail
-
salt
protected PBKDF2ParameterType.Salt salt
-
iterationCount
protected java.math.BigInteger iterationCount
-
keyLength
protected java.math.BigInteger keyLength
-
prf
protected PRFAlgorithmIdentifierType prf
-
-
Method Detail
-
getSalt
public PBKDF2ParameterType.Salt getSalt()
Gets the value of the salt property.- Returns:
- possible object is
PBKDF2ParameterType.Salt
-
setSalt
public void setSalt(PBKDF2ParameterType.Salt value)
Sets the value of the salt property.- Parameters:
value- allowed object isPBKDF2ParameterType.Salt
-
getIterationCount
public java.math.BigInteger getIterationCount()
Gets the value of the iterationCount property.- Returns:
- possible object is
BigInteger
-
setIterationCount
public void setIterationCount(java.math.BigInteger value)
Sets the value of the iterationCount property.- Parameters:
value- allowed object isBigInteger
-
getKeyLength
public java.math.BigInteger getKeyLength()
Gets the value of the keyLength property.- Returns:
- possible object is
BigInteger
-
setKeyLength
public void setKeyLength(java.math.BigInteger value)
Sets the value of the keyLength property.- Parameters:
value- allowed object isBigInteger
-
getPRF
public PRFAlgorithmIdentifierType getPRF()
Gets the value of the prf property.- Returns:
- possible object is
PRFAlgorithmIdentifierType
-
setPRF
public void setPRF(PRFAlgorithmIdentifierType value)
Sets the value of the prf property.- Parameters:
value- allowed object isPRFAlgorithmIdentifierType
-
-