diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-05-06 15:45:16 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-05-06 15:45:16 +0000 |
| commit | 60cffeeeb185ec2b9c70d8018b2cc61f11e2f945 (patch) | |
| tree | 7d80c46f866dc0842378251da16e5a743f43ad7b /python/lassomod.c | |
| parent | 71ed7f38a91309cd81daca5d2c697f21a6b646b7 (diff) | |
| download | lasso-60cffeeeb185ec2b9c70d8018b2cc61f11e2f945.tar.gz lasso-60cffeeeb185ec2b9c70d8018b2cc61f11e2f945.tar.xz lasso-60cffeeeb185ec2b9c70d8018b2cc61f11e2f945.zip | |
*** empty log message ***
Diffstat (limited to 'python/lassomod.c')
| -rw-r--r-- | python/lassomod.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/python/lassomod.c b/python/lassomod.c index 62c628d1..b780b0ec 100644 --- a/python/lassomod.c +++ b/python/lassomod.c @@ -27,6 +27,7 @@ #include "py_lasso.h" #include "xml/py_xml.h" +#include "xml/py_lib_authentication_statement.h" #include "xml/py_lib_authn_request.h" #include "xml/py_lib_federation_termination_notification.h" #include "xml/py_lib_logout_request.h" @@ -68,6 +69,10 @@ static PyMethodDef lasso_methods[] = { {"node_soap_envelop", node_soap_envelop, METH_VARARGS}, {"node_verify_signature", node_verify_signature, METH_VARARGS}, + /* py_lib_authentication_statement.h */ + {"lib_authentication_statement_new", lib_authentication_statement_new, METH_VARARGS}, + {"lib_authentication_statement_set_sessionIndex", lib_authentication_statement_set_sessionIndex, METH_VARARGS}, + /* py_lib_authn_request.h */ {"lib_authn_request_new", lib_authn_request_new, METH_VARARGS}, {"lib_authn_request_set_forceAuthn", lib_authn_request_set_forceAuthn, METH_VARARGS}, @@ -119,7 +124,8 @@ static PyMethodDef lasso_methods[] = { /* py_authn_response.h */ {"authn_response_getattr", authn_response_getattr, METH_VARARGS}, - {"authn_response_new", authn_response_new, METH_VARARGS}, + {"authn_response_new_from_dump", authn_response_new_from_dump, 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}, |
