diff options
Diffstat (limited to 'python/lasso.py')
| -rw-r--r-- | python/lasso.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/lasso.py b/python/lasso.py index 33f82c6f..009bb867 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -871,6 +871,9 @@ class Login: def build_authn_request_msg(self): return lassomod.login_build_authn_request_msg(self) + def build_request_msg(self): + return lassomod.login_build_request_msg(self) + def init_authn_request(self, remote_providerID): return lassomod.login_init_authn_request(self, remote_providerID) @@ -878,6 +881,10 @@ class Login: return lassomod.login_init_from_authn_request_msg(self, authn_request_msg, authn_request_method) + def init_request(self, response_msg, response_method, remote_providerID): + return lassomod.login_init_request(self, response_msg, + response_method, remote_providerID) + def must_authenticate(self): return lassomod.login_must_authenticate(self) |
