diff options
author | Leif Johansson <leifj@sunet.se> | 2015-10-23 14:17:57 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2015-10-23 14:17:57 +0200 |
commit | acf78be9a6260df9737a475da3d63bc334ef6dac (patch) | |
tree | 2401ae4d518ce84de2664bfa44a36cf05868c401 /xslt | |
parent | 66a18b1f8f1e8e6f832a89d5d5a450610fcf9c2f (diff) |
fix validation issues
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/sign.xsl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xslt/sign.xsl b/xslt/sign.xsl index c0e04ab5..51d2492a 100644 --- a/xslt/sign.xsl +++ b/xslt/sign.xsl @@ -3,6 +3,7 @@ xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:exsl="http://exslt.org/common" xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi" @@ -22,7 +23,7 @@ <xsl:attribute name="URI"><xsl:text>#</xsl:text><xsl:value-of select="@ID"/></xsl:attribute> <ds:Transforms> <ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/> - <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#WithComments"/> + <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> </ds:Transforms> <ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> <ds:DigestValue></ds:DigestValue> |