Skip to content

Commit

Permalink
ArtifactResolutionService endpoints on SPs are usually not TLS-authen…
Browse files Browse the repository at this point in the history
…ticated.
  • Loading branch information
iay committed Nov 18, 2012
1 parent 14223b0 commit f6ebefc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build/extract_cert_locs.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@
<xsl:text>&#x0a;</xsl:text>
</xsl:template>

<xsl:template match="//md:ArtifactResolutionService">
<!--
ArtifactResolutionService endpoints on IdPs are assumed to be
authenticated by TLS; those on SPs are assumed to be authenticated
using other mechanisms.
-->
<xsl:template match="//md:IDPSSODescriptor/md:ArtifactResolutionService">
<xsl:value-of select="@Location"/>
<xsl:text>&#x0a;</xsl:text>
</xsl:template>
Expand Down
5 changes: 5 additions & 0 deletions build/extract_nocert_locs.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
<xsl:text>&#x0a;</xsl:text>
</xsl:template>

<xsl:template match="//md:SPSSODescriptor/md:ArtifactResolutionService">
<xsl:value-of select="@Location"/>
<xsl:text>&#x0a;</xsl:text>
</xsl:template>

<xsl:template match="text()">
<!-- do nothing -->
</xsl:template>
Expand Down

0 comments on commit f6ebefc

Please sign in to comment.