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
I see the OidcOpFrontend module is meant to support pairwise sub_type, but this cannot really be selected.
In oidcop/session/manager.py, create_session has sub_type defaulting to public, but when OidcOpFrontend calls create_session, it does not pass a value for sub_type, so public is always used as the default.
I'd think that if a client has include subject_type in its registration, the value passed under subject_type should be used for the sub_type argument to create_session - that would solve this issue.
Thanks a lot in advance for considering it.
Cheers,
Vlad
The text was updated successfully, but these errors were encountered:
# [1.1.0](v1.0.1...v1.1.0) (2022-12-14)
### Features
* pass subject_type from client config to create_session as sub_type ([83b3e81](83b3e81)), closes [#21](#21)
Hi,
This is partly a follow-up to #20.
I see the OidcOpFrontend module is meant to support pairwise
sub_type
, but this cannot really be selected.In
oidcop/session/manager.py
,create_session
hassub_type
defaulting topublic
, but when OidcOpFrontend callscreate_session
, it does not pass a value forsub_type
, sopublic
is always used as the default.I'd think that if a client has include
subject_type
in its registration, the value passed undersubject_type
should be used for thesub_type
argument tocreate_session
- that would solve this issue.Thanks a lot in advance for considering it.
Cheers,
Vlad
The text was updated successfully, but these errors were encountered: