samples icon indicating copy to clipboard operation
samples copied to clipboard

SignatureDescription could not be created for the signature algorithm supplied when using ECDSA algorithm

Open pauloortins opened this issue 1 year ago • 2 comments
trafficstars

I'm integrating SecureAuth as an IDP using SAML to my Azure B2C and SecureAuth by default uses ECDSA as the encryption algorithm.

<ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#ecdsa-sha256"/>

When I integrate it the Azure B2C throws the following error:

"SignatureDescription could not be created for the signature algorithm supplied."

The only ways I'm able to make it work is:

  1. Force SecureAuth to use RSA instead.

  2. Disable the encryption by doing: <Metadata> <Item Key="ResponsesSigned">false</Item>
    <Item Key="WantsSignedAssertions">false</Item> </Metadata>

Is there an 3rd way when the Azure B2C can support the ECDSA algorithm?

pauloortins avatar Oct 24 '24 21:10 pauloortins