Skip to content

Commit 5e28734

Browse files
[GH-49] Add security object with requestedAuthnContext to include password and x509 to AzureIdPs (#50)
* Add security object with requestedAuthnContext to include password and x509 to AzureIdPs * [Bot] Update version to 1.2.5 --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c93721c commit 5e28734

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "uw-saml"
3-
version = "1.2.4"
3+
version = "1.2.5"
44
description = "A UW-specific adapter to the python3-saml package."
55
authors = []
66
license = "Apache 2.0"

uw_saml2/idp/federated.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ class CascadiaAzureIdp(IdpConfig):
6666
wJPxARowqyxR5q6PWX5JzOtFzuCx0vJ/jI0o8iAg53fOitgDFj3E6/qxjPhoDY+Q
6767
Pq4dr8god4m9Nr6k8kFWBbL2sXn1GC72SDeuvk0Q4X3t8tLb
6868
"""
69+
security = {
70+
"requestedAuthnContext": [
71+
"urn:oasis:names:tc:SAML:2.0:ac:classes:Password",
72+
"urn:oasis:names:tc:SAML:2.0:ac:classes:X509",
73+
]
74+
}
6975

7076

7177
class CollegenetIdp(IdpConfig):
@@ -140,6 +146,12 @@ class FredHutchAzureIdp(IdpConfig):
140146
fMU1NZFfOfsaDjM18iSBDcsYIDeSadDh8knyFRxYGXHYrifEEq5qZBgnXXhYZLse
141147
4BimG9X9nynGlI6QcU5Qj7gnddQOQpk2OFFAGoUBw+vQaZNZLDGGcyvbRaueuXSh
142148
4gzm/WDtjnJ/Cod/Qg8OfJLEARBkLQZpvCFlTDFJ1dkDDRMC"""
149+
security = {
150+
"requestedAuthnContext": [
151+
"urn:oasis:names:tc:SAML:2.0:ac:classes:Password",
152+
"urn:oasis:names:tc:SAML:2.0:ac:classes:X509",
153+
]
154+
}
143155

144156

145157
class SccaIdp(IdpConfig):

0 commit comments

Comments
 (0)