Is it possible to gather the SignatureMethod from the IdP SAML metadata using ITfoxtec.Identity.Saml2?

Viewed 114

Using ITfoxtec.Identity.Saml2 is it possible to gather the Saml2Configuration.SignatureAlgorithm property automatically via the metadata provided by the IdP?

See two examples below, the SignatureMethod is available but it doesn't appear to be referenced in the EntityDescriptor, which focuses on the EntityDescriptor.

Sha1 example
Metadata 1

Sha256 example
Metadata 2

Thanks

1 Answers

No. The signature algorithm is not exposed in the SMAL 2.0 metadata. You have to ask the IdP.

Related