X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2Fencryption%2FEncryptedKeyResolver.h;h=c5b9cfee9849bf93d3bbceeecb1b25999305bb0e;hb=d8a4f024b89272eae00618fc39e6127b6c191edd;hp=8063c1c9c8f05624c80a731e74ab3c8eeaad0b58;hpb=b1614d3c1fc1f4230ab2a123f43994127c25462c;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/encryption/EncryptedKeyResolver.h b/saml/encryption/EncryptedKeyResolver.h index 8063c1c..c5b9cfe 100644 --- a/saml/encryption/EncryptedKeyResolver.h +++ b/saml/encryption/EncryptedKeyResolver.h @@ -1,5 +1,5 @@ /* - * Copyright 2001-2007 Internet2 + * Copyright 2001-2009 Internet2 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ /** * @file saml/encryption/EncryptedKeyResolver.h * - * SAML-specific encrypted key resolver + * SAML-specific encrypted key resolver. */ #ifndef __saml_enckeyres_h__ @@ -41,14 +41,19 @@ namespace opensaml { class SAML_API EncryptedKeyResolver : public xmlencryption::EncryptedKeyResolver { public: - EncryptedKeyResolver(const saml2::EncryptedElementType& ref) : m_ref(ref) { - } + /** + * Constructor. + * + * @param ref reference to encrypted element + */ + EncryptedKeyResolver(const saml2::EncryptedElementType& ref); - virtual ~EncryptedKeyResolver() {} + virtual ~EncryptedKeyResolver(); const xmlencryption::EncryptedKey* resolveKey(const xmlencryption::EncryptedData& encryptedData, const XMLCh* recipient=NULL) const; protected: + /** Reference to encrypted element. */ const saml2::EncryptedElementType& m_ref; };