X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2Fbinding%2Fimpl%2FNullSecurityRule.cpp;h=51a3d6acb91bea806216fb28d386f50c0f2cda87;hb=c072b75e6f6e05e24a1c35b952008b38d0d375c1;hp=7d984abfdc5be8c2fbb1cf3af38cd11c6e7ad84b;hpb=9d61992f725e8b73421e9262a711f4cbdd782b18;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/binding/impl/NullSecurityRule.cpp b/saml/binding/impl/NullSecurityRule.cpp index 7d984ab..51a3d6a 100644 --- a/saml/binding/impl/NullSecurityRule.cpp +++ b/saml/binding/impl/NullSecurityRule.cpp @@ -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. @@ -21,6 +21,7 @@ */ #include "internal.h" +#include "binding/SecurityPolicy.h" #include "binding/SecurityPolicyRule.h" #include @@ -40,9 +41,10 @@ namespace opensaml { const char* getType() const { return NULLSECURITY_POLICY_RULE; } - void evaluate(const XMLObject& message, const GenericRequest* request, const XMLCh* protocol, SecurityPolicy& policy) const { + bool evaluate(const XMLObject& message, const GenericRequest* request, SecurityPolicy& policy) const { m_log.warn("security enforced using NULL policy rule, be sure you know what you're doing"); - policy.setSecure(true); + policy.setAuthenticated(true); + return true; } private: