Skip to content

New line and whitespace normalisation in canonicalisation operation  #238

Open
@dventurait

Description

@dventurait

I have and error related to unmatching digests.
After debugging some signature validation errors on SAML responses, I would like to discuss with you a couple of questions.

The SAML response we have is like this:


<bar>\r\n
  <foo>Something Here</foo>\r\n
</bar>\r\n

In the Canonical process the \r chars are replaced by &#xD; ( see this function: https://github.com/yaronn/xml-crypto/blob/master/lib/utils.js#L66)

This code will modify the SAML response generating this output:


<bar>&#xD;\n
  <foo>Something Here</foo>&#xD;\n
</bar>&#xD;\n

The digest is calculated on this modified XML which generates a digest different from the one in the original SAML response. The consequence is the validation process fails.

I have a couple of questions:

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions