Skip to content

Commit edbb952

Browse files
Add links to updated spec versions with errata
1 parent c356e44 commit edbb952

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

src/saml2/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@
6161

6262
VERSION = "2.0"
6363
# http://docs.oasis-open.org/security/saml/v2.0/saml-bindings-2.0-os.pdf
64+
# The specification was later updated with errata, and the new version is here:
65+
# http://www.oasis-open.org/committees/download.php/56779/sstc-saml-bindings-errata-2.0-wd-06.pdf
6466
# parse a SOAP header, make a SOAP request, and receive a SOAP response
6567
BINDING_SOAP = 'urn:oasis:names:tc:SAML:2.0:bindings:SOAP'
6668
# parse a PAOS header, make a PAOS request, and receive a PAOS response

src/saml2/saml.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33
#
44
# Generated Mon May 2 14:23:33 2011 by parse_xsd.py version 0.4.
55
#
6+
# A summary of available specifications can be found at:
7+
# https://wiki.oasis-open.org/security/FrontPage
8+
#
69
# saml core specifications to be found at:
710
# if any question arise please query the following pdf.
811
# http://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf
12+
# The specification was later updated with errata, and the new version is here:
13+
# https://www.oasis-open.org/committees/download.php/56776/sstc-saml-core-errata-2.0-wd-07.pdf
914
#
1015

1116

@@ -81,15 +86,14 @@
8186

8287
# a profile outlines a set of rules describing how to embed SAML assertions.
8388
# https://docs.oasis-open.org/security/saml/v2.0/saml-profiles-2.0-os.pdf
89+
# The specification was later updated with errata, and the new version is here:
90+
# https://www.oasis-open.org/committees/download.php/56782/sstc-saml-profiles-errata-2.0-wd-07.pdf
8491

8592
# XML based values for SAML attributes
8693
PROFILE_ATTRIBUTE_BASIC = (
8794
"urn:oasis:names:tc:SAML:2.0:profiles:attribute:basic")
8895

8996
# an AuthnRequest is made to initiate authentication
90-
# TODO: it is not clear that the request sets the context
91-
# for the AuthnRequest, maybe rename to AUTHN_CONTEXT_PASSWORD
92-
9397
# authenticate the request with login credentials
9498
AUTHN_PASSWORD = "urn:oasis:names:tc:SAML:2.0:ac:classes:Password"
9599
# authenticate the request with login credentials, over tls/https

0 commit comments

Comments
 (0)