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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# $Id$
#
# PyLasso - Python bindings for Lasso Library
#
# Copyright (C) 2003-2004 Easter-eggs, Valery Febvre
# 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
__docformat__ = "plaintext en"
import lassomod
from lasso_strings import *
class Error(Exception):
def __init__(self, msg):
self.msg = msg
def __str__(self):
return repr(self.msg)
def init():
"""
"""
return lassomod.init()
def shutdown():
"""
Shutdown Lasso Library
"""
return lassomod.shutdown()
def assertion_build(response, issuer):
return Node(_obj=lassomod.assertion_build(response, issuer))
def assertion_add_authenticationStatement(assertion, statement):
return lassomod.assertion_add_authenticationStatement(assertion, statement)
def authentication_statement_build(authenticationMethod, sessionIndex,
reauthenticateOnOrAfter,
nameIdentifier, nameQualifier,
format, idp_nameIdentifier,
idp_nameQualifier, idp_format,
confirmationMethod):
return Node(_obj=lassomod.authentication_statement_build(
authenticationMethod, sessionIndex,
reauthenticateOnOrAfter,
nameIdentifier, nameQualifier,
format, idp_nameIdentifier,
idp_nameQualifier, idp_format,
confirmationMethod))
class AuthnRequest:
def __init__(self, providerID, nameIDPolicy, forceAuthn, isPassive,
protocolProfile, assertionConsumerServiceID,
authnContextClassRefs, authnContextStatementRefs,
authnContextComparison, relayState, proxyCount, idpList,
consent, _obj=None):
"""
"""
if _obj != None:
self._o = _obj
return
self._o = lassomod.authn_request_create(providerID,
nameIDPolicy,
forceAuthn,
isPassive,
protocolProfile,
assertionConsumerServiceID,
authnContextClassRefs,
authnContextStatementRefs,
authnContextComparison,
relayState,
proxyCount,
idpList,
consent)
if self._o is None: raise Error('lasso_authn_request_create() failed')
def __isprivate(self, name):
return name == '_o'
def __getattr__(self, name):
if self.__isprivate(name):
return self.__dict__[name]
if name[:2] == "__" and name[-2:] == "__" and name != "__members__":
raise AttributeError, name
ret = lassomod.authn_request_getattr(self, name)
if ret is None:
raise AttributeError, name
if name == "node":
ret = Node(_obj=ret)
return ret
class AuthnResponse:
def __init__(self, query, verify_signature, public_key_file,
private_key_file, certificate_file, is_authenticated,
_obj=None):
"""
"""
if _obj != None:
self._o = _obj
return
self._o = lassomod.authn_response_create(query,
verify_signature,
public_key_file,
private_key_file,
certificate_file,
is_authenticated)
if self._o is None: raise Error('lasso_authn_response_create() failed')
def __isprivate(self, name):
return name == '_o'
def __getattr__(self, name):
if self.__isprivate(name):
return self.__dict__[name]
if name[:2] == "__" and name[-2:] == "__" and name != "__members__":
raise AttributeError, name
ret = lassomod.authn_response_getattr(self, name)
if ret is None:
raise AttributeError, name
if name == "node":
ret = Node(_obj=ret)
return ret
def init(self, providerID, authentication_result):
return lassomod.authn_response_init(self, providerID,
authentication_result)
def add_assertion(self, assertion):
return lassomod.authn_response_add_assertion(self, assertion)
class LogoutRequest:
def __init__(self, providerID,
nameIdentifier, nameQualifier, format,
sessionIndex, relayState, consent, _obj=None):
"""
"""
if _obj != None:
self._o = _obj
return
self._o = lassomod.logout_request_create(providerID,
nameIdentifier,
nameQualifier,
format,
sessionIndex,
relayState,
consent)
if self._o is None: raise Error('lasso_logout_request_create() failed')
def __isprivate(self, name):
return name == '_o'
def __getattr__(self, name):
if self.__isprivate(name):
return self.__dict__[name]
if name[:2] == "__" and name[-2:] == "__" and name != "__members__":
raise AttributeError, name
ret = lassomod.authn_logout_getattr(self, name)
if ret is None:
raise AttributeError, name
if name == "node":
ret = Node(_obj=ret)
return ret
class Request:
def __init__(self, assertionArtifact, _obj=None):
"""
"""
if _obj != None:
self._o = _obj
return
self._o = lassomod.request_create(assertionArtifact)
if self._o is None: raise Error('lasso_request_create() failed')
def __isprivate(self, name):
return name == '_o'
def __getattr__(self, name):
if self.__isprivate(name):
return self.__dict__[name]
if name[:2] == "__" and name[-2:] == "__" and name != "__members__":
raise AttributeError, name
ret = lassomod.request_getattr(self, name)
if ret is None:
raise AttributeError, name
if name == "node":
ret = Node(_obj=ret)
return ret
class Response:
def __init__(self, serialized_request,
verify_signature,
public_key_file, private_key_file, certificate_file,
_obj=None):
"""
"""
if _obj != None:
self._o = _obj
return
self._o = lassomod.response_create(serialized_request,
verify_signature,
public_key_file, private_key_file, certificate_file)
if self._o is None: raise Error('lasso_response_create() failed')
def __isprivate(self, name):
return name == '_o'
def __getattr__(self, name):
if self.__isprivate(name):
return self.__dict__[name]
if name[:2] == "__" and name[-2:] == "__" and name != "__members__":
raise AttributeError, name
ret = lassomod.response_getattr(self, name)
if ret is None:
raise AttributeError, name
if name == "node":
ret = Node(_obj=ret)
elif name == "request_node":
ret = Node(_obj=ret)
return ret
def init(self, authentication_result):
return lassomod.response_init(self, authentication_result)
class Node:
def __init__(self, _obj=None):
"""
"""
if _obj != None:
self._o = _obj
return
#self._o = lassomod.(size)
if self._o is None: raise Error('lasso_node_new() failed')
def dump(self, encoding, format):
return lassomod.node_dump(self, encoding, format)
def destroy(self):
lassomod.node_unref(self)
def get_attr_value(self, name):
return lassomod.node_get_attr_value(self, name)
def get_child(self, name):
return Node(_obj=lassomod.node_get_child(self, name))
def url_encode(self, sign_method, private_key_file):
return lassomod.node_url_encode(self, sign_method, private_key_file)
def verify_signature(self, certificate_file):
return lassomod.node_verify_signature(self, certificate_file)
|