You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
When combining this plugin with SPNEGO login, the latter spits out a principal. This plugin is able to use this principal, but adds another with the same user name. This seems useless and actually blocks using the https://wiki.shibboleth.net/confluence/display/IDP30/SimplePostLoginC14NConfiguration needed for SPNEGO, since we have now two independent principals. Disabling the extra principal seemed to do the trick:
When combining this plugin with SPNEGO login, the latter spits out a principal. This plugin is able to use this principal, but adds another with the same user name. This seems useless and actually blocks using the https://wiki.shibboleth.net/confluence/display/IDP30/SimplePostLoginC14NConfiguration needed for SPNEGO, since we have now two independent principals. Disabling the extra principal seemed to do the trick:
src/main/java/ca/ab/concordia/privacyIDEAtfa/TokenValidator.java:```
// do not let 2FA set username
// subject.getPrincipals().add(new UsernamePrincipal(username));
The text was updated successfully, but these errors were encountered: