X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=saml%2Fbinding%2FSecurityPolicyRule.h;h=003e7ec5b29954a9126d13c48f0d768d1290d7c3;hp=ae17ba4ea4000280cdee5e569b095f24bec03d1a;hb=c3cd4ec3fa87d0ad3c6f65c1a5e15f548b1b6cc2;hpb=1d5fda59e4996860bb2480ad52e29b2160d04725 diff --git a/saml/binding/SecurityPolicyRule.h b/saml/binding/SecurityPolicyRule.h index ae17ba4..003e7ec 100644 --- a/saml/binding/SecurityPolicyRule.h +++ b/saml/binding/SecurityPolicyRule.h @@ -1,6 +1,6 @@ /* * 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. * You may obtain a copy of the License at @@ -16,7 +16,7 @@ /** * @file saml/binding/SecurityPolicyRule.h - * + * * Policy rules that secure and authenticate bindings. */ @@ -26,13 +26,13 @@ #include namespace opensaml { - + /** * A rule that a protocol request and message must meet in order to be valid and secure. - * + * *

Rules must be stateless and thread-safe across evaluations. Evaluation should not * result in an exception if the request/message properties do not apply to the rule - * (e.g. particular security mechanisms that are not present). + * (e.g. particular security mechanisms that are not present). */ class SAML_API SecurityPolicyRule { @@ -51,14 +51,14 @@ namespace opensaml { /** * Evaluates the rule against the given request and message. - * + * *

An exception will be raised if the message is invalid according to * a policy rule. * *

The return value is used to indicate whether a message was ignored or * successfully processed. A false value signals that the rule wasn't successful * but was also not unsuccessful, because the rule was inapplicable to the message. - * + * * @param message the incoming message * @param request the protocol request * @param policy SecurityPolicy to provide various components and track message data @@ -77,49 +77,64 @@ namespace opensaml { void SAML_API registerSecurityPolicyRules(); /** + * SecurityPolicyRule for evaluation of SAML AudienceRestriction Conditions. + */ + #define AUDIENCE_POLICY_RULE "Audience" + + /** * SecurityPolicyRule for TLS client certificate authentication. - * + * * Evaluates client certificates against the issuer's metadata. */ #define CLIENTCERTAUTH_POLICY_RULE "ClientCertAuth" /** + * SecurityPolicyRule for evaluation of SAML Conditions. + */ + #define CONDITIONS_POLICY_RULE "Conditions" + + /** + * SecurityPolicyRule for ignoring a SAML Condition. + */ + #define IGNORE_POLICY_RULE "Ignore" + + /** * SecurityPolicyRule for replay detection and freshness checking. - * + * *

A ReplayCache instance must be available from the runtime, unless * a "checkReplay" XML attribute is set to "0" or "false" when instantiating * the policy rule. - * + * *

Messages must have been issued in the past, but no more than 60 seconds ago, * or up to a number of seconds set by an "expires" XML attribute when * instantiating the policy rule. */ - #define MESSAGEFLOW_POLICY_RULE "MessageFlow" + #define MESSAGEFLOW_POLICY_RULE "MessageFlow" /** * SecurityPolicyRule for disabling security. - * + * * Allows the message issuer to be authenticated regardless of the message or * transport. Used mainly for debugging or in situations that I wouldn't care to * comment on. */ - #define NULLSECURITY_POLICY_RULE "NullSecurity" + #define NULLSECURITY_POLICY_RULE "NullSecurity" /** * SecurityPolicyRule for protocol message "blob" signing. - * + * * Allows the message issuer to be authenticated using a non-XML digital signature * over the message body. The transport layer is not considered. */ - #define SIMPLESIGNING_POLICY_RULE "SimpleSigning" + #define SIMPLESIGNING_POLICY_RULE "SimpleSigning" /** * SecurityPolicyRule for protocol message XML signing. - * + * * Allows the message issuer to be authenticated using an XML digital signature * over the message. The transport layer is not considered. */ - #define XMLSIGNING_POLICY_RULE "XMLSigning" + #define XMLSIGNING_POLICY_RULE "XMLSigning" }; #endif /* __saml_secrule_h__ */