X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2Fencryption%2FEncryptedKeyResolver.h;fp=saml%2Fencryption%2FEncryptedKeyResolver.h;h=db5f5016049fc232f25c0ee68379755176513459;hb=81542e255e0f15a3a63822ac00546ff5aaf950f6;hp=8063c1c9c8f05624c80a731e74ab3c8eeaad0b58;hpb=5d38a7bf41f369d21b722890fa72de5eae8e944b;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/encryption/EncryptedKeyResolver.h b/saml/encryption/EncryptedKeyResolver.h index 8063c1c..db5f501 100644 --- a/saml/encryption/EncryptedKeyResolver.h +++ b/saml/encryption/EncryptedKeyResolver.h @@ -41,6 +41,11 @@ namespace opensaml { class SAML_API EncryptedKeyResolver : public xmlencryption::EncryptedKeyResolver { public: + /** + * Constructor. + * + * @param ref reference to encrypted element + */ EncryptedKeyResolver(const saml2::EncryptedElementType& ref) : m_ref(ref) { } @@ -49,6 +54,7 @@ namespace opensaml { const xmlencryption::EncryptedKey* resolveKey(const xmlencryption::EncryptedData& encryptedData, const XMLCh* recipient=NULL) const; protected: + /** Reference to encrypted element. */ const saml2::EncryptedElementType& m_ref; };