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 TypeMethodDescriptionboolean
Evaluate whether the specifiedXMLObject
is handled by the implementation.Parse the specifiedXMLObject
into aKeyAgreementParameter
.
-
Method Details
-
handles
Evaluate whether the specifiedXMLObject
is handled by the implementation.- Parameters:
xmlObject
- the XML object to evaluate- Returns:
- true if handles, false if not
-
parse
Parse the specifiedXMLObject
into 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
-