Package org.opensaml.xmlsec.encryption
Interface PBKDF2Params
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEElement local name.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringTYPE_LOCAL_NAMELocal name of the XSI type.static QNameTYPE_NAMEQName of the XSI type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IterationCountgetIterationCount()Get the IterationCount child element.KeyLengthgetKeyLength()Get the KeyLength child element.PRFgetPRF()Get the PRF child element.SaltgetSalt()Get the Salt child element.voidsetIterationCount(IterationCount count)Set the IterationCount child element.voidsetKeyLength(KeyLength length)Set the KeyLength child element.voidsetPRF(PRF prf)Set the PRF child element.voidsetSalt(Salt salt)Set the Salt child element.-
Methods inherited from interface org.opensaml.core.xml.XMLObject
detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getObjectMetadata, getOrderedChildren, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
-
-
-
-
Field Detail
-
DEFAULT_ELEMENT_LOCAL_NAME
static final String DEFAULT_ELEMENT_LOCAL_NAME
Element local name.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
static final QName DEFAULT_ELEMENT_NAME
Default element name.
-
TYPE_LOCAL_NAME
static final String TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
static final QName TYPE_NAME
QName of the XSI type.
-
-
Method Detail
-
getSalt
@Nullable Salt getSalt()
Get the Salt child element.- Returns:
- the element
-
setSalt
void setSalt(@Nullable Salt salt)Set the Salt child element.- Parameters:
salt- the salt
-
getIterationCount
@Nullable IterationCount getIterationCount()
Get the IterationCount child element.- Returns:
- the element
-
setIterationCount
void setIterationCount(@Nullable IterationCount count)Set the IterationCount child element.- Parameters:
count- the new iteration count
-
getKeyLength
@Nullable KeyLength getKeyLength()
Get the KeyLength child element.- Returns:
- the element
-
setKeyLength
void setKeyLength(@Nullable KeyLength length)Set the KeyLength child element.- Parameters:
length- the new key length
-
getPRF
@Nullable PRF getPRF()
Get the PRF child element.- Returns:
- the element
-
setPRF
void setPRF(@Nullable PRF prf)Set the PRF child element.- Parameters:
prf- the new PRF element
-
-