summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-05-13 16:52:47 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-05-13 16:52:47 +0000
commit5f86d1e634fe19fb1f0dabde974aab711f24bdce (patch)
tree7599672d0c2e73de57e368ad2f607a50286985ab /python
parentce2a38b7df0b09f418af7ca6b6bf36b011ed9495 (diff)
downloadlasso-5f86d1e634fe19fb1f0dabde974aab711f24bdce.tar.gz
lasso-5f86d1e634fe19fb1f0dabde974aab711f24bdce.tar.xz
lasso-5f86d1e634fe19fb1f0dabde974aab711f24bdce.zip
2 methods renamed, 3 added and 1 removed
Diffstat (limited to 'python')
-rw-r--r--python/lassomod.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/python/lassomod.c b/python/lassomod.c
index 303bb062..05b40c2d 100644
--- a/python/lassomod.c
+++ b/python/lassomod.c
@@ -38,6 +38,7 @@
#include "xml/py_saml_assertion.h"
#include "xml/py_saml_authentication_statement.h"
#include "xml/py_saml_name_identifier.h"
+#include "xml/py_samlp_response.h"
#include "protocols/py_authn_request.h"
#include "protocols/py_authn_response.h"
@@ -63,12 +64,12 @@ static PyMethodDef lasso_methods[] = {
/* xml */
/* py_xml.h */
{"node_dump", node_dump, 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},
{"node_get_child", node_get_child, METH_VARARGS},
{"node_get_content", node_get_content, METH_VARARGS},
{"node_unref", node_unref, METH_VARARGS},
- {"node_url_encode", node_url_encode, METH_VARARGS},
- {"node_soap_envelop", node_soap_envelop, METH_VARARGS},
{"node_verify_signature", node_verify_signature, METH_VARARGS},
/* py_lib_authentication_statement.h */
@@ -111,6 +112,7 @@ static PyMethodDef lasso_methods[] = {
/* py_saml_assertion.h */
{"saml_assertion_new", saml_assertion_new, METH_VARARGS},
{"saml_assertion_add_authenticationStatement", saml_assertion_add_authenticationStatement, METH_VARARGS},
+ {"saml_assertion_set_signature", saml_assertion_set_signature, METH_VARARGS},
/* py_saml_authentication_statement.h */
{"saml_authentication_statement_new", saml_authentication_statement_new, METH_VARARGS},
@@ -120,6 +122,10 @@ static PyMethodDef lasso_methods[] = {
{"saml_name_identifier_set_format", saml_name_identifier_set_format, METH_VARARGS},
{"saml_name_identifier_set_nameQualifier", saml_name_identifier_set_nameQualifier, METH_VARARGS},
+ /* py_samlp_response.h */
+ {"samlp_response_new", samlp_response_new, METH_VARARGS},
+ {"samlp_response_add_assertion", samlp_response_add_assertion, METH_VARARGS},
+
/* protocols */
/* py_authn_request.h */
{"authn_request_new", authn_request_new, METH_VARARGS},
@@ -131,7 +137,7 @@ static PyMethodDef lasso_methods[] = {
{"authn_response_getattr", authn_response_getattr, 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_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},