Projet

Général

Profil

0001-idp_saml-remove-old-code.patch

Valentin Deniaud, 16 avril 2019 13:47

Télécharger (1,02 ko)

Voir les différences:

Subject: [PATCH 1/5] idp_saml: remove old code

 src/authentic2/idp/saml/saml2_endpoints.py | 2 --
 1 file changed, 2 deletions(-)
src/authentic2/idp/saml/saml2_endpoints.py
346 346
                    lasso.SAML2_AUTHN_CONTEXT_PASSWORD_PROTECTED_TRANSPORT
347 347
            elif how == 'ssl':
348 348
                authn_context = lasso.SAML2_AUTHN_CONTEXT_X509
349
            elif how.startswith('oath-totp'):
350
                authn_context = lasso.SAML2_AUTHN_CONTEXT_TIME_SYNC_TOKEN
351 349
            else:
352 350
                raise NotImplementedError('Unknown authentication method %s',
353 351
                        how)
354
-