1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/* $Id$
*
* PyLasso - Python bindings for Lasso library
*
* Copyright (C) 2004 Entr'ouvert
* http://lasso.labs.libre-entreprise.org
*
* Author: Valery Febvre <vfebvre@easter-eggs.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "lassomod.h"
#include "py_lasso.h"
#include "xml/py_xml.h"
#include "protocols/py_logout.h"
#include "protocols/py_single_sign_on_and_federation.h"
static PyMethodDef lasso_methods[] = {
/* py_lasso.h */
{"init", init, METH_VARARGS},
{"shutdown", shutdown, METH_VARARGS},
{"check_version_exact", check_version_exact, METH_VARARGS},
{"check_version", check_version, METH_VARARGS},
{"check_version_ext", check_version_ext, METH_VARARGS},
/* xml */
/* py_xml.h */
{"node_dump", node_dump, METH_VARARGS},
{"node_get_attr_value", node_get_attr_value, METH_VARARGS},
{"node_get_child", node_get_child, METH_VARARGS},
{"node_unref", node_unref, METH_VARARGS},
{"node_url_encode", node_url_encode, METH_VARARGS},
{"node_verify_signature", node_verify_signature, METH_VARARGS},
/* protocols */
/* py_logout.h */
{"logout_request_getattr", logout_request_getattr, METH_VARARGS},
{"logout_request_create", logout_request_create, 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_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},
{"request_create", request_create, METH_VARARGS},
{"request_getattr", request_getattr, METH_VARARGS},
{"response_create", response_create, METH_VARARGS},
{"response_getattr", response_getattr, METH_VARARGS},
{"response_init", response_init, METH_VARARGS},
{NULL, NULL} /* End of Methods Sentinel */
};
PyObject *lasso_error;
void initlassomod(void) {
PyObject *m, *d;
m = Py_InitModule("lassomod", lasso_methods);
d = PyModule_GetDict(m);
lasso_error = PyErr_NewException("lassomod.error", NULL, NULL);
PyDict_SetItemString(d, "lassomod error", lasso_error);
Py_INCREF(lasso_error);
PyModule_AddObject(m, "lassomod error", lasso_error);
}
|