Interface KeyAgreementParameterParser
- All Known Implementing Classes:
ConcatKDF.Parser,DigestMethod.Parser,KANonce.Parser,PBKDF2.Parser
public interface KeyAgreementParameterParser
A component which parses an
XMLObject into an instance of KeyAgreementParameter.-
Method Summary
Modifier and TypeMethodDescriptionbooleanEvaluate whether the specifiedXMLObjectis handled by the implementation.Parse the specifiedXMLObjectinto aKeyAgreementParameter.
-
Method Details
-
handles
Evaluate whether the specifiedXMLObjectis handled by the implementation.- Parameters:
xmlObject- the XML object to evaluate- Returns:
- true if handles, false if not
-
parse
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
-