diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-04-08 02:44:16 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-04-08 02:44:16 +0000 |
| commit | a914a109350e3285e6c8118644ba2162cd8632ad (patch) | |
| tree | fcc3ef9ee550b083d4060b741bc7c436bb8b92b0 /python/lassomod.c | |
| parent | b73d899efd03f3058b752e0f64061f1f7e308fc9 (diff) | |
| download | lasso-a914a109350e3285e6c8118644ba2162cd8632ad.tar.gz lasso-a914a109350e3285e6c8118644ba2162cd8632ad.tar.xz lasso-a914a109350e3285e6c8118644ba2162cd8632ad.zip | |
*** empty log message ***
Diffstat (limited to 'python/lassomod.c')
| -rw-r--r-- | python/lassomod.c | 16 |
1 files changed, 12 insertions, 4 deletions
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 */ }; |
