summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2004-08-04 15:04:38 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2004-08-04 15:04:38 +0000
commit39823a5f49764426271d82b891f8fb0b31c45885 (patch)
tree4929775e906d275cc0e7ca47488c45d3eb07a9af /python/lasso.py
parentdb0c5292db260e04fed32d5cac2c84c4217dea48 (diff)
downloadlasso-39823a5f49764426271d82b891f8fb0b31c45885.tar.gz
lasso-39823a5f49764426271d82b891f8fb0b31c45885.tar.xz
lasso-39823a5f49764426271d82b891f8fb0b31c45885.zip
update of lecp python binding
Diffstat (limited to 'python/lasso.py')
-rw-r--r--python/lasso.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/python/lasso.py b/python/lasso.py
index e1b7a8dd..b3ea2b39 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -1208,13 +1208,13 @@ class RegisterNameIdentifier:
pass
def init_request(self, remote_providerID):
- return lassomod.register_name_identifier_init_request(self, remote_providerID);
+ return lassomod.register_name_identifier_init_request(self, remote_providerID)
def process_request(self):
return lassomod.register_name_identifier_process_request(self)
def process_response_msg(self, response_msg, response_method):
- return lassomod.register_name_identifier_process_response_msg(self, response_msg, response_method);
+ return lassomod.register_name_identifier_process_response_msg(self, response_msg, response_method)
class Lecp:
"""\brief Short desc
@@ -1246,30 +1246,30 @@ class Lecp:
return Lecp(obj)
new = classmethod(new)
+ def build_authn_request_envelope_msg(self):
+ return lassomod.lecp_build_authn_request_envelope_msg(self)
+
+ def build_authn_response_envelope_msg(self):
+ return lassomod.lecp_build_authn_response_envelope_msg(self)
+
def build_authn_request_msg(self):
return lassomod.lecp_build_authn_request_msg(self)
- def build_authn_request_envelope_msg(self):
- return lassomod.lecp_build_authn_request_envelope_msg(self);
-
def build_authn_response_msg(self):
return lassomod.lecp_build_authn_response_msg(self)
- def build_authn_response_envelope_msg(self):
- return lassomod.lecp_build_authn_response_envelope_msg(self)
-
def destroy(self):
lassomod.lecp_destroy(self)
- def init_authn_request_envelope(self, authnRequest):
- return lassomod.lecp_init_authn_request_envelope(self, authnRequest)
+ def init_authn_request(self, remote_providerID):
+ return lassomod.lecp_init_authn_request(self, remote_providerID)
- def init_authn_response_envelope(self, authnRequest, authnResponse):
- return lassomod.lecp_init_authn_response_envelope(self, authnRequest, authnResponse)
+ def init_from_authn_request_msg(self, authn_request_msg, authn_request_method):
+ return lassomod.lecp_init_from_authn_request_msg(self, authn_request_msg, authn_request_method)
def process_authn_request_envelope_msg(self, request_msg):
return lassomod.lecp_process_authn_request_envelope_msg(self, request_msg)
-
+
def process_authn_response_envelope_msg(self, response_msg):
return lassomod.lecp_process_authn_response_envelope_msg(self, response_msg)