pennersr / django-allauth

Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.

Home Page:https://allauth.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deprecated signature algorithm SAML

tchenevi opened this issue · comments

Hi,

I'm using allauth to login with SAML. The IDP I want to connect to is using an old signature algorithm and I get the error : Deprecated signature algorithm found: http://www.w3.org/2000/09/xmldsig#rsa-sha1

Is there a way to widen the range of accepted Signature algorithms in the settings file or elsewhere ?

Thanks !

Can you try setting this?:

{"idp": {...},
 "advanced": {"reject_deprecated_algorithm": False, ...},

It worked perfectly
Thanks !