diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-08-19 12:52:19 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-08-19 12:52:19 +0000 |
| commit | 2b9431bc3b079b150b9832101ff67d66ebb3535e (patch) | |
| tree | 989e4d7e71e7c25a34fd1bf92439ae69bbbbe1b3 /python/xml | |
| parent | 851e653728688d7ba38c2fc74bd37ff626eb1aa0 (diff) | |
| download | lasso-2b9431bc3b079b150b9832101ff67d66ebb3535e.tar.gz lasso-2b9431bc3b079b150b9832101ff67d66ebb3535e.tar.xz lasso-2b9431bc3b079b150b9832101ff67d66ebb3535e.zip | |
Update python binding
Diffstat (limited to 'python/xml')
| -rw-r--r-- | python/xml/py_saml_assertion.c | 4 | ||||
| -rw-r--r-- | python/xml/py_xml.c | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/python/xml/py_saml_assertion.c b/python/xml/py_saml_assertion.c index 14ba3bdf..7faa0c59 100644 --- a/python/xml/py_saml_assertion.c +++ b/python/xml/py_saml_assertion.c @@ -84,9 +84,7 @@ PyObject *saml_assertion_set_signature(PyObject *self, PyObject *args) { ret = lasso_saml_assertion_set_signature(LassoSamlAssertion_get(node_obj), sign_method, - private_key_file, certificate_file, - NULL); - /* FIXME generate an exception here */ + private_key_file, certificate_file); Py_INCREF(Py_None); return (Py_None); diff --git a/python/xml/py_xml.c b/python/xml/py_xml.c index 54c9ee65..83636187 100644 --- a/python/xml/py_xml.c +++ b/python/xml/py_xml.c @@ -207,8 +207,7 @@ PyObject *node_verify_signature(PyObject *self, PyObject *args) { else return NULL; ret = lasso_node_verify_signature(LassoNode_get(node_obj), - certificate_file, NULL); - /* FIXME generate an exception here */ + certificate_file); return (int_wrap(ret)); } |
