diff options
Diffstat (limited to 'python/lasso.py')
| -rw-r--r-- | python/lasso.py | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/python/lasso.py b/python/lasso.py index 5a30fe06..d41d93f9 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -928,12 +928,6 @@ class Login: def dump(self): return lassomod.login_dump(self) - def process_authn_response_msg(self, authn_response_msg): - return lassomod.login_process_authn_response_msg(self, authn_response_msg) - - def process_request_msg(self, request_msg): - return lassomod.login_process_request_msg(self, request_msg) - def init_authn_request(self, remote_providerID): return lassomod.login_init_authn_request(self, remote_providerID) @@ -948,6 +942,15 @@ class Login: def must_authenticate(self): return lassomod.login_must_authenticate(self) + def process_authn_response_msg(self, authn_response_msg): + return lassomod.login_process_authn_response_msg(self, authn_response_msg) + + def process_request_msg(self, request_msg): + return lassomod.login_process_request_msg(self, request_msg) + + def process_response_msg(self, response_msg, remote_providerID): + return lassomod.login_process_response_msg(self, response_msg, remote_providerID) + providerTypeSp = 1 providerTypeIdp = 2 |
