Skip to content

Commit

Permalink
Allow SAML subject identifier attributes as RequestedAttribute elements
Browse files Browse the repository at this point in the history
See ukf/ukf-meta#183.
  • Loading branch information
iay committed Oct 16, 2019
1 parent d041e4f commit 948fd71
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions mdx/_rules/check_reqattr.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
Currently only a single attribute, documented at:
https://www.eduroam.cz/attributes/eduroamUID
* SAML V2.0 Subject Identifier Attributes Profile
https://docs.oasis-open.org/security/saml-subject-id-attr/v1.0/cs01/saml-subject-id-attr-v1.0-cs01.pdf
Author: Ian A. Young <ian@iay.org.uk>
Expand Down Expand Up @@ -493,6 +495,16 @@
<!-- OK -->
</xsl:when>

<!--
SAML V2.0 Subject Identifier Attributes Profile Version 1.0
-->
<xsl:when test="
@Name = 'urn:oasis:names:tc:SAML:attribute:subject-id' or
@Name = 'urn:oasis:names:tc:SAML:attribute:pairwise-id'
">
<!-- OK -->
</xsl:when>

<!--
Otherwise unknown attribute names.
-->
Expand Down

0 comments on commit 948fd71

Please sign in to comment.