From a914a109350e3285e6c8118644ba2162cd8632ad Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Thu, 8 Apr 2004 02:44:16 +0000 Subject: *** empty log message *** --- python/lassomod.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'python/lassomod.c') diff --git a/python/lassomod.c b/python/lassomod.c index fc97e55e..8fce8193 100644 --- a/python/lassomod.c +++ b/python/lassomod.c @@ -37,13 +37,21 @@ static PyMethodDef lasso_methods[] = { {"check_version_ext", check_version_ext, METH_VARARGS}, /* py_xml.h */ - {"node_dump", node_dump, METH_VARARGS}, - {"node_unref", node_unref, METH_VARARGS}, + {"node_dump", node_dump, METH_VARARGS}, + {"node_unref", node_unref, METH_VARARGS}, + {"node_url_encode", node_url_encode, METH_VARARGS}, /* py_single_sign_on_and_federation.h */ {"authn_request_getattr", authn_request_getattr, METH_VARARGS}, - {"authn_request_create", authn_request_create, METH_VARARGS}, - + {"authn_request_create", authn_request_create, METH_VARARGS}, + {"authn_response_getattr", authn_response_getattr, METH_VARARGS}, + {"authn_response_create", authn_response_create, METH_VARARGS}, + {"authn_response_init", authn_response_init, METH_VARARGS}, + {"authn_response_add_assertion", authn_response_add_assertion, METH_VARARGS}, + {"assertion_build", assertion_build, METH_VARARGS}, + {"assertion_add_authenticationStatement", assertion_add_authenticationStatement, METH_VARARGS}, + {"authentication_statement_build", authentication_statement_build, METH_VARARGS}, + {NULL, NULL} /* End of Methods Sentinel */ }; -- cgit