summaryrefslogtreecommitdiffstats
path: root/python/lassomod.c
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-05-14 00:00:18 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-05-14 00:00:18 +0000
commitfb0ae5893caba1ed56fff9f122cfd529ecf6ba92 (patch)
tree48a76c584191c5a84c898795426aa02a4e84bcf2 /python/lassomod.c
parent7feb79492a08ef70adb2688b1277fc7c7e49e4d8 (diff)
downloadlasso-fb0ae5893caba1ed56fff9f122cfd529ecf6ba92.tar.gz
lasso-fb0ae5893caba1ed56fff9f122cfd529ecf6ba92.tar.xz
lasso-fb0ae5893caba1ed56fff9f122cfd529ecf6ba92.zip
node_export() and node_export_from_base64() functions added
2 export methods in class Node added
Diffstat (limited to 'python/lassomod.c')
-rw-r--r--python/lassomod.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/lassomod.c b/python/lassomod.c
index 05b40c2d..a393cfd5 100644
--- a/python/lassomod.c
+++ b/python/lassomod.c
@@ -64,6 +64,8 @@ static PyMethodDef lasso_methods[] = {
/* xml */
/* py_xml.h */
{"node_dump", node_dump, METH_VARARGS},
+ {"node_export", node_export, METH_VARARGS},
+ {"node_export_to_base64", node_export_to_base64, METH_VARARGS},
{"node_export_to_query", node_export_to_query, METH_VARARGS},
{"node_export_to_soap", node_export_to_soap, METH_VARARGS},
{"node_get_attr_value", node_get_attr_value, METH_VARARGS},
@@ -136,8 +138,8 @@ static PyMethodDef lasso_methods[] = {
/* py_authn_response.h */
{"authn_response_getattr", authn_response_getattr, METH_VARARGS},
{"authn_response_new_from_dump", authn_response_new_from_dump, METH_VARARGS},
+ {"authn_response_new_from_export", authn_response_new_from_export, METH_VARARGS},
{"authn_response_new_from_request_query", authn_response_new_from_request_query, METH_VARARGS},
-/* {"authn_response_add_assertion", authn_response_add_assertion, METH_VARARGS}, */
{"authn_response_must_authenticate", authn_response_must_authenticate, METH_VARARGS},
{"authn_response_process_authentication_result", authn_response_process_authentication_result, METH_VARARGS},
{"authn_response_verify_signature", authn_response_verify_signature, METH_VARARGS},