Interface KeyAgreementParameterParser
-
- All Known Implementing Classes:
ConcatKDF.Parser,DigestMethod.Parser,KANonce.Parser,PBKDF2.Parser
public interface KeyAgreementParameterParserA component which parses anXMLObjectinto an instance ofKeyAgreementParameter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhandles(XMLObject xmlObject)Evaluate whether the specifiedXMLObjectis handled by the implementation.KeyAgreementParameterparse(XMLObject xmlObject)Parse the specifiedXMLObjectinto aKeyAgreementParameter.
-
-
-
Method Detail
-
handles
boolean handles(@Nonnull XMLObject xmlObject)Evaluate whether the specifiedXMLObjectis handled by the implementation.- Parameters:
xmlObject- the XML object to evaluate- Returns:
- true if handles, false if not
-
parse
KeyAgreementParameter parse(@Nonnull XMLObject xmlObject) throws KeyAgreementException
Parse the specifiedXMLObjectinto aKeyAgreementParameter.- Parameters:
xmlObject- the XMLObject to be parsed- Returns:
- the new key agreement parameter instance
- Throws:
KeyAgreementException- if parameter parsing of the supplied object fails
-
-