Class PBKDF2ParameterType

java.lang.Object
org.apache.xml.security.binding.xmlenc11.PBKDF2ParameterType

public class PBKDF2ParameterType extends Object

Java 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>