This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-05-06 23:20:08 +00:00
|
|
|
"""SAML-related constants"""
|
|
|
|
NS_SAML_PROTOCOL = "urn:oasis:names:tc:SAML:2.0:protocol"
|
|
|
|
NS_SAML_ASSERTION = "urn:oasis:names:tc:SAML:2.0:assertion"
|
|
|
|
NS_SIGNATURE = "http://www.w3.org/2000/09/xmldsig#"
|
|
|
|
|
2020-05-07 17:25:15 +00:00
|
|
|
REQ_KEY_REQUEST = "SAMLRequest"
|
|
|
|
REQ_KEY_SIGNATURE = "Signature"
|
|
|
|
|
|
|
|
SESSION_KEY = "passbook_saml_request"
|
|
|
|
|
2020-05-06 23:20:08 +00:00
|
|
|
SAML_ATTRIB_ACS_URL = "AssertionConsumerServiceURL"
|
|
|
|
SAML_ATTRIB_DESTINATION = "Destination"
|
|
|
|
SAML_ATTRIB_ID = "ID"
|
|
|
|
SAML_ATTRIB_ISSUE_INSTANT = "IssueInstant"
|
|
|
|
SAML_ATTRIB_PROTOCOL_BINDING = "ProtocolBinding"
|