X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=xmltooling%2Fsecurity%2FKeyInfoResolver.h;h=042ccd37e6476989603b8267d3834a5f97df20a5;hb=a0d768778a8f5f539b909baf5b115e70ea765f0f;hp=06163b88068663899da739fa9e2f95a113d961fe;hpb=bd026f07e729e66127b3efd48aee443fba815af3;p=shibboleth%2Fcpp-xmltooling.git diff --git a/xmltooling/security/KeyInfoResolver.h b/xmltooling/security/KeyInfoResolver.h index 06163b8..042ccd3 100644 --- a/xmltooling/security/KeyInfoResolver.h +++ b/xmltooling/security/KeyInfoResolver.h @@ -1,5 +1,5 @@ /* - * Copyright 2001-2009 Internet2 + * Copyright 2001-2010 Internet2 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -60,7 +60,7 @@ namespace xmltooling { * * @param keyInfo the key information * @param types types of credentials to resolve, or 0 for any/all - * @return the resolved credential, or NULL + * @return the resolved credential, or nullptr */ virtual Credential* resolve(const xmlsignature::KeyInfo* keyInfo, int types=0) const=0; @@ -70,7 +70,7 @@ namespace xmltooling { * * @param keyInfo the key information * @param types types of credentials to resolve, or 0 for any/all - * @return the resolved credential, or NULL + * @return the resolved credential, or nullptr */ virtual Credential* resolve(DSIGKeyInfoList* keyInfo, int types=0) const=0; @@ -82,7 +82,7 @@ namespace xmltooling { * * @param context context containing the key information * @param types types of credentials to resolve, or 0 for any/all - * @return the resolved credential, or NULL + * @return the resolved credential, or nullptr */ virtual Credential* resolve(KeyInfoCredentialContext* context, int types=0) const=0; @@ -92,7 +92,7 @@ namespace xmltooling { * * @param sig signature containing the key information * @param types types of credentials to resolve, or 0 for any/all - * @return the resolved credential, or NULL + * @return the resolved credential, or nullptr */ Credential* resolve(const xmlsignature::Signature* sig, int types=0) const; @@ -102,7 +102,7 @@ namespace xmltooling { * * @param criteria criteria containing the key information * @param types types of credentials to resolve, or 0 for any/all - * @return the resolved credential, or NULL + * @return the resolved credential, or nullptr */ Credential* resolve(const CredentialCriteria& criteria, int types=0) const; };