blob: e00a83198c6781869729401dad07c087f8450363 [file] [log] [blame]
Jean-Paul Calderone84fd3742010-09-14 18:05:45 -040012010-09-14 Jean-Paul Calderone <exarkun@twistedmatrix.com>
2
3 * OpenSSL/crypto/netscape_spki.c: Fix an off-by-one mistake in the
4 error handling for NetscapeSPKI.verify. Add additional error
5 checking to NetscapeSPKI.sign to handle the case where there is no
6 private key.
7
8 * OpenSSL/crypto/x509.c: Fix an overflow bug in the subject_name_hash
9 method of the X509 type which would cause it to return negative
10 values on 32 bit systems.
11
12 * OpenSSL/crypto/x509req.c: Fix an off-by-one mistake in the error
13 handling for X509Req.verify.
14
15 * OpenSSL/ssl/context.c: Fix the error handling in the load_tmp_dh
16 method of the Context type which would cause it to always raise
17 MemoryError, regardless of the actual error (such as a bad file
18 name).
19
20 * OpenSSL/test/: Numerous unit tests added, both for above fixes
21 and for other previously untested code paths.
22
Jean-Paul Calderone6d78fed2010-07-27 21:47:22 -0400232010-07-27 Jean-Paul Calderone <exarkun@twistedmatrix.com>
24
25 * Re-arrange the repository so that the package can be built and
26 used in-place without requiring installation.
27
James Yonan7c2e5d32010-02-27 05:45:50 -0700282010-02-27 James Yonan <james@openvpn.net>
29
30 * src/crypto/crypto.c: Added crypto.sign and crypto.verify methods
31 that wrap EVP_Sign and EVP_Verify function families, using code
32 derived from Dave Cridland's PyOpenSSL branch.
33
34 * test/test_crypto.py: Added unit tests for crypto.sign and
35 crypto.verify.
36
Jean-Paul Calderone40b32a22010-01-27 16:56:44 -0500372010-01-27 Jean-Paul Calderone <exarkun@twistedmatrix.com>
38
39 * src/ssl/connection.c, src/util.h: Apply patch from Sandro Tosi to
40 fix misspellings of "compatibility".
41
Jean-Paul Calderone5cc61972009-11-13 09:16:32 -0500422009-11-13 Jean-Paul Calderone <exarkun@twistedmatrix.com>
43
44 * Release 0.10
45
Jean-Paul Calderone76751912009-11-12 07:51:04 -0500462009-11-07 Žiga Seilnacht, Jean-Paul Calderone <exarkun@twistedmatrix.com>
47
48 * src/ssl/connection.c, src/ssl/context.c: Add set_client_ca_list,
49 add_client_ca, and get_client_ca_list to Context for manipulating
50 the list of certificate authority names which are sent by servers
51 with the certificate request message.
52 * src/util.h: Add ssize-related defines if the version of Python
53 being used does not have them.
54 * setup.py: Significant changes to the way Windows builds are done,
55 particularly the way OpenSSL headers and libraries are found (with
56 the new --with-openssl argument to build_ext).
57
Jean-Paul Calderone2953db82009-08-27 13:20:38 -0400582009-08-27 Rick Dean <rick@fdd.com>, Jean-Paul Calderone <exarkun@twistedmatrix.com>
59
60 * src/crypto/pkcs12.c: Add setters to the PKCS12 type for the
61 certificate, private key, ca certificate list, and friendly
62 name, and add a getter for the friendly name. Also add a method
63 for exporting a PKCS12 object as a string.
Jean-Paul Calderone2953db82009-08-27 13:20:38 -040064 * test/test_crypto.py: Add lots of additional tests for the PKCS12
65 type.
Jean-Paul Calderone2953db82009-08-27 13:20:38 -040066 * doc/pyOpenSSL.tex: Documentation for the new PKCS12 methods.
67
682009-07-17 Rick Dean <rick@fdd.com>, Jean-Paul Calderone <exarkun@twistedmatrix.com>
Jean-Paul Calderone9ac425c2009-07-17 16:06:12 -040069
70 * src/crypto/x509ext.c: Add subject and issuer parameters to
71 X509Extension, allowing creation of extensions which require that
72 information. Fixes LP#322813.
73
Jean-Paul Calderone8b327992009-07-16 18:52:14 -0400742009-07-16 Jean-Paul Calderone <exarkun@twistedmatrix.com>
75
76 * test/util.py: Changed the base TestCase's tearDown to assert that
77 no errors were left in the OpenSSL error queue by the test.
78 * src/crypto/crypto.c: Add a private helper in support of the
79 TestCase.tearDown change.
80 * src/crypto/x509name.c: Changed X509Name's getattr implementation
81 to clean up the error queue. Fixes LP#314814.
82 * test/util.c: Changed flush_error_queue to avoid a reference
83 counting bug caused by macro expansion.
84
Jean-Paul Calderoneb3b94e02009-07-16 14:07:28 -0400852009-07-16 Rick Dean <rick@fdd.com>
86
87 * src/rand.c: Added OpenSSL.rand.bytes to get random bytes directly.
88 * src/util.c: Added generic exceptions_from_error_queue to replace
89 the various other implementations of this function. Also updated
90 the rest of the codebase to use this version instead.
91
Jean-Paul Calderone0b88b6a2009-07-05 12:44:41 -0400922009-07-05 Jean-Paul Calderone <exarkun@twistedmatrix.com>
93
Jean-Paul Calderone18808652009-07-05 12:54:05 -040094 * test/util.py, test/test_ssl.py, test/test_crypto.py: Fold the
95 Python 2.3 compatibility TestCase mixin into the TestCase defined
96 in util.py.
97
982009-07-05 Jean-Paul Calderone <exarkun@twistedmatrix.com>
99
Jean-Paul Calderone0b88b6a2009-07-05 12:44:41 -0400100 * test/util.py, test/test_ssl.py, test/test_crypto.py: Stop trying
101 to use Twisted's TestCase even when it's available. Instead,
102 always use the stdlib TestCase with a few enhancements.
103
Jean-Paul Calderonefdc5a0a2009-07-04 15:48:42 -04001042009-07-04 Jean-Paul Calderone <exarkun@twistedmatrix.com>
105
106 * Changed most extension types so that they can be instantiated
107 using the type object rather than a factory function. The old
108 factory functions are now aliases for the type objects.
109 Fixes LP#312786.
110
Jean-Paul Calderonea96bfed2009-05-27 08:47:34 -04001112009-05-27 Jean-Paul Calderone <exarkun@twistedmatrix.com>
112
Jean-Paul Calderone54bcc832009-05-27 14:06:48 -0400113 * Changed all docstrings in extension modules to be friendlier
114 towards Python programmers. Fixes LP#312787.
115
1162009-05-27 Jean-Paul Calderone <exarkun@twistedmatrix.com>
117
Jean-Paul Calderonea96bfed2009-05-27 08:47:34 -0400118 * src/crypto/x509ext.c: Correctly deallocate the new Extension
119 instance when there is an error initializing it and it is not
120 going to be returned. Resolves LP#368043.
121
Jean-Paul Calderoned683f2d2009-05-11 10:47:42 -04001222009-05-11 Jean-Paul Calderone <exarkun@twistedmatrix.com>
123
124 * test/test_crypto.py: Use binary mode for the pipe to talk to the
125 external openssl binary. The data being transported over this
126 pipe is indeed binary, so previously it would often be truncated
127 or otherwise mangled.
128
129 * src/ssl/connection.h, src/ssl/connection.c, test/test_ssl.py:
130 Extend the Connection class with support for in-memory BIOs. This
131 allows SSL to be run without a real socket, useful for
132 implementing EAP-TLS or using SSL with Windows IO completion
Jean-Paul Calderoneb0921592009-05-11 10:48:41 -0400133 ports, for example. Based heavily on contributions from Rick
134 Dean.
Jean-Paul Calderoned683f2d2009-05-11 10:47:42 -0400135
Jean-Paul Calderone71ff3682009-04-25 08:30:11 -04001362009-04-25 Jean-Paul Calderone <exarkun@twistedmatrix.com>
137
138 * Release 0.9
139
Jean-Paul Calderoneb8a70732009-04-01 14:49:13 -04001402009-04-01 Jean-Paul Calderone <exarkun@twistedmatrix.com>
Jean-Paul Calderoneec48cd52009-04-01 19:01:41 -0400141 Samuele Pedroni <pedronis@openend.se>
142
143 * src/util.h: Delete the TLS key before trying to set a new value
144 for it in case the current thread identifier is a recycled one (if
145 it is recycled, the key won't be set because there is already a
146 value from the previous thread to have this identifier and to use
147 the pyOpenSSL API).
148
1492009-04-01 Jean-Paul Calderone <exarkun@twistedmatrix.com>
Jean-Paul Calderoneb8a70732009-04-01 14:49:13 -0400150
151 * src/crypto/crypto.c: Add FILETYPE_TEXT for dumping keys and
152 certificates and certificate signature requests to a text format.
153
Jean-Paul Calderonee7db4b42008-12-31 13:39:24 -05001542008-12-31 Jean-Paul Calderone <exarkun@twistedmatrix.com>
155
Jean-Paul Calderonef8c5fab2008-12-31 15:53:48 -0500156 * src/crypto/x509ext.c, test/test_crypto.py: Add the get_short_name
157 method to X509Extension based on patch from Alex Stapleton.
Jean-Paul Calderone2953db82009-08-27 13:20:38 -0400158
Jean-Paul Calderonef8c5fab2008-12-31 15:53:48 -05001592008-12-31 Jean-Paul Calderone <exarkun@twistedmatrix.com>
160
Jean-Paul Calderonee7db4b42008-12-31 13:39:24 -0500161 * src/crypto/x509ext.c, test/test_crypto.py: Fix X509Extension so
162 that it is possible to instantiate extensions which use s2i or r2i
163 instead of v2i (an extremely obscure extension implementation
164 detail).
165
Jean-Paul Calderone24e2b0b2008-12-30 15:12:11 -05001662008-12-30 Jean-Paul Calderone <exarkun@twistedmatrix.com>
167
168 * MANIFEST.in, src/crypto/crypto.c, src/crypto/x509.c,
169 src/crypto/x509name.c, src/rand/rand.c, src/ssl/context.c: Changes
170 which eliminate compiler warnings but should not change any
171 behavior.
172
Jean-Paul Calderone8dd19b82008-12-28 20:41:16 -05001732008-12-28 Jean-Paul Calderone <exarkun@twistedmatrix.com>
174
Jean-Paul Calderone327d8f92008-12-28 21:55:56 -0500175 * test/test_ssl.py, src/ssl/ssl.c: Expose DTLS-related constants,
176 OP_NO_QUERY_MTU, OP_COOKIE_EXCHANGE, and OP_NO_TICKET.
177
1782008-12-28 Jean-Paul Calderone <exarkun@twistedmatrix.com>
179
Jean-Paul Calderoneaa9c7972008-09-07 21:27:49 -0400180 * src/ssl/context.c: Add a capath parameter to
181 Context.load_verify_locations to allow Python code to specify
182 either or both arguments to the underlying
183 SSL_CTX_load_verify_locations API.
184 * src/ssl/context.c: Add Context.set_default_verify_paths, a wrapper
185 around SSL_CTX_set_default_verify_paths.
186
Jean-Paul Calderone5b000d72008-12-28 21:09:53 -05001872008-12-28 Jean-Paul Calderone <exarkun@twistedmatrix.com>
188
Jean-Paul Calderone8dd19b82008-12-28 20:41:16 -0500189 * test/test_crypto.py, src/crypto/x509req.c: Added get_version and
190 set_version_methods to X509ReqType based on patch from Wouter van
191 Bommel. Resolves LP#274418.
192
Jean-Paul Calderonef7f0fb42008-10-19 11:55:13 -04001932008-09-22 Jean-Paul Calderone <exarkun@twistedmatrix.com>
194
195 * Release 0.8
196
Jean-Paul Calderone002bf462008-10-19 11:35:40 -04001972008-10-19 Jean-Paul Calderone <exarkun@twistedmatrix.com>
198
199 * tsafe.py: Revert the deprecation of the thread-safe Connection
200 wrapper. The Connection class should not segfault if used from
201 multiple threads now, but it generally cannot be relied on to
202 produce correct results if used without the thread-safe wrapper.
Jean-Paul Calderone1eeb29e2008-10-19 11:50:53 -0400203 * doc/pyOpenSSL.tex: Correct the documentation for the set_passwd_cb
204 callback parameter so that it accurately describes the required
205 signature.
Jean-Paul Calderone002bf462008-10-19 11:35:40 -0400206
Jean-Paul Calderonea319ca92008-09-22 08:45:40 -04002072008-09-22 Jean-Paul Calderone <exarkun@twistedmatrix.com>
208
Jean-Paul Calderoneb5fdbbf2008-09-22 09:04:09 -0400209 * Release 0.8a1
210
Jean-Paul Calderoneb7d6db22008-09-21 18:57:56 -04002112008-09-21 Jean-Paul Calderone <exarkun@twistedmatrix.com>
212
213 * src/ssl/ssl.h, src/ssl/ssl.c: Add a thread-local storage key
Jean-Paul Calderone002bf462008-10-19 11:35:40 -0400214 which will be used to store and retrieve PyThreadState pointers
215 whenever it is necessary to release or re-acquire the GIL.
Jean-Paul Calderoneb7d6db22008-09-21 18:57:56 -0400216
217 * src/ssl/context.c: Change global_verify_callback so that it
Jean-Paul Calderone002bf462008-10-19 11:35:40 -0400218 unconditionally manipulates the Python threadstate, rather than
219 checking the tstate field which is now always NULL.
Jean-Paul Calderoneb7d6db22008-09-21 18:57:56 -0400220
Jean-Paul Calderone828c9cb2008-04-26 18:06:54 -04002212008-04-26 Jean-Paul Calderone <exarkun@twistedmatrix.com>
222
Jean-Paul Calderone5ef86512008-04-26 19:06:28 -0400223 * src/ssl/context.c: Change global_passphrase_callback and
224 global_info_callback so that they acquire the GIL before
225 invoking any CPython APIs and do not release it until after they
226 are finished invoking all of them (based heavily on on patch
227 from Dan Williams).
Jean-Paul Calderoneaea5d902008-04-26 19:53:39 -0400228 * src/ssl/crypto.c: Initialize OpenSSL thread support so that it
229 is valid to use OpenSSL APIs from more than one thread (based on
230 patch from Dan Williams).
Jean-Paul Calderone828c9cb2008-04-26 18:06:54 -0400231 * test/test_crypto.py: Add tests for load_privatekey and
232 dump_privatekey when a passphrase or a passphrase callback is
233 supplied.
Jean-Paul Calderone5ef86512008-04-26 19:06:28 -0400234 * test/test_ssl.py: Add tests for Context.set_passwd_cb and
235 Context.set_info_callback.
Jean-Paul Calderone828c9cb2008-04-26 18:06:54 -0400236
Jean-Paul Calderonee53ccf72008-04-11 11:40:39 -04002372008-04-11 Jean-Paul Calderone <exarkun@twistedmatrix.com>
238
239 * Release 0.7
240
Jean-Paul Calderonec54cc182008-03-26 21:11:07 -04002412008-03-26 Jean-Paul Calderone <exarkun@twistedmatrix.com>
242
243 * src/crypto/x509name.c: Add X509Name.get_components
244
Jean-Paul Calderone9ab16c02008-03-25 15:22:47 -04002452008-03-25 Jean-Paul Calderone <exarkun@twistedmatrix.com>
246
247 * src/crypto/x509name.c: Add hash and der methods to X509Name.
Jean-Paul Calderonec8215432008-03-25 15:34:21 -0400248 * src/crypto/x509.c: Fix a bug in X509.get_notBefore and
249 X509.get_notAfter preventing UTCTIME format timestamps from
250 working.
Jean-Paul Calderone9ab16c02008-03-25 15:22:47 -0400251
Jean-Paul Calderone3de9f622008-03-12 14:12:19 -04002522008-03-12 Jean-Paul Calderone <exarkun@twistedmatrix.com>
253
254 * Fix coding problems in examples/. Remove keys and certificates
255 and add a note about how to generate new ones.
256
Jean-Paul Calderone525ef802008-03-09 20:39:42 -04002572008-03-09 Jean-Paul Calderone <exarkun@twistedmatrix.com>
258
259 * src/crypto/x509.c: Add getters and setters for the notBefore and
260 notAfter attributes of X509s.
Jean-Paul Calderoneac0d95f2008-03-10 00:00:42 -0400261 * src/crypto/pkey.h, src/crypto/pkey.c, src/crypto/x509req.c,
262 src/crypto/x509.c: Track the initialized and public/private state
263 of EVP_PKEY structures underlying the crypto_PKeyObj type and
264 reject X509Req signature operations on keys not suitable for the
265 task.
Jean-Paul Calderone525ef802008-03-09 20:39:42 -0400266
Jean-Paul Calderoneda92ccc2008-03-06 23:48:12 -05002672008-03-06 Jean-Paul Calderone <exarkun@twistedmatrix.com>
268
269 * src/crypto/x509name.c: Fix tp_compare so it only returns -1, 0, or
270 1. This eliminates a RuntimeWarning emitted by Python.
271 * src/crypto/x509req.c: Fix reference counting for X509Name returned
272 by X509Req.get_subject. This removes a segfault when the subject
273 name outlives the request object.
274 * src/crypto/x509.c: Change get_serial_number and set_serial_number
275 to accept Python longs.
276 * doc/pyOpenSSL.tex: A number of minor corrections.
277
Jean-Paul Calderone7df40db2008-03-03 15:12:42 -05002782008-03-03 Jean-Paul Calderone <exarkun@twistedmatrix.com>
279
280 * src/crypto/crypto.c: Expose X509_verify_cert_error_string. (patch
281 from Victor Stinner)
282
Jean-Paul Calderone12ea9a02008-02-22 12:24:39 -05002832008-02-22 Jean-Paul Calderone <exarkun@twistedmatrix.com>
284
285 * src/ssl/connection.c src/ssl/context.c src/ssl/ssl.c: Fix
286 compilation on Windows. (patch from Michael Schneider)
287
Jean-Paul Calderone72b8f0f2008-02-21 23:57:40 -05002882008-02-21 Jean-Paul Calderone <exarkun@twistedmatrix.com>
289
290 * src/ssl/connection.c: Expose SSL_get_shutdown and
291 SSL_set_shutdown. (patch from James Knight)
292 * src/ssl/ssl.c: Expose SSL_SENT_SHUTDOWN and SSL_RECEIVED_SHUTDOWN.
293 (patch from James Knight)
294
Jean-Paul Calderone779db6b2008-02-19 21:00:37 -05002952008-02-19 Jean-Paul Calderone <exarkun@twistedmatrix.com>
296
297 * src/ssl/context.c: Expose SSL_CTX_add_extra_chain_cert.
298 * src/crypto/x509name.c: Fix memory leaks in __getattr__ and
299 __setattr_ implementations.
Jean-Paul Calderone19555b92008-02-19 22:29:57 -0500300 * src/crypto/x509.c: Fix memory leak in X509.get_pubkey().
301 * leakcheck/: An attempt at a systematic approach to leak
302 elimination.
Jean-Paul Calderone779db6b2008-02-19 21:00:37 -0500303
Jean-Paul Calderone897bc252008-02-18 20:50:23 -05003042004-08-13 Martin Sjögren <msjogren@gmail.com>
305
306 * Released version 0.6.
307
3082004-08-11 Martin Sjögren <msjogren@gmail.com>
309
310 * doc/pyOpenSSL.tex: Updates to the docs.
311
3122004-08-10 Martin Sjögren <msjogren@gmail.com>
313
314 * src/crypto/x509.c: Add X509.add_extensions based on a patch
315 from Han S. Lee.
316 * src/ssl/ssl.c: Add more SSL_OP_ constants. Patch from Mihai
317 Ibanescu.
318
3192004-08-09 Martin Sjögren <msjogren@gmail.com>
320
321 * setup.py src/crypto/: Add support for Netscape SPKI extensions
322 based on a patch from Tollef Fog Heen.
323 * src/crypto/crypto.c: Add support for python passphrase callbacks
324 based on a patch from Robert Olson.
325
3262004-08-03 Martin Sjögren <msjogren@gmail.com>
327
328 * src/ssl/context.c: Applied patch from Frederic Peters to add
329 Context.use_certificate_chain_file.
330 * src/crypto/x509.c: Applid patch from Tollef Fog Heen to add
331 X509.subject_name_hash and X509.digest.
332
3332004-08-02 Martin Sjögren <msjogren@gmail.com>
334
335 * src/crypto/crypto.c src/ssl/ssl.c: Applied patch from Bastian
336 Kleineidam to fix full names of exceptions.
337
3382004-07-19 Martin Sjögren <msjogren@gmail.com>
339
340 * doc/pyOpenSSL.tex: Fix the errors regarding X509Name's field names.
Jean-Paul Calderone828c9cb2008-04-26 18:06:54 -0400341
Jean-Paul Calderone897bc252008-02-18 20:50:23 -05003422004-07-18 Martin Sjögren <msjogren@gmail.com>
343
344 * examples/certgen.py: Fixed wrong attributes in doc string, thanks
345 Remy. (SFbug#913315)
346 * __init__.py, setup.py, version.py: Add __version__, as suggested by
347 Ronald Oussoren in SFbug#888729.
348 * examples/proxy.py: Fix typos, thanks Mihai Ibanescu. (SFpatch#895820)
349
3502003-01-09 Martin Sjögren <martin@strakt.com>
351
352 * Use cyclic GC protocol in SSL.Connection, SSL.Context, crypto.PKCS12
353 and crypto.X509Name.
354
3552002-12-02 Martin Sjögren <martin@strakt.com>
356
357 * tsafe.py: Add some missing methods.
358
3592002-10-06 Martin Sjögren <martin@strakt.com>
360
361 * __init__.py: Import tsafe too!
362
3632002-10-05 Martin Sjögren <martin@strakt.com>
364
365 * src/crypto/x509name.c: Use unicode strings instead of ordinary
366 strings in getattr/setattr. Note that plain ascii strings should
367 still work.
368
3692002-09-17 Martin Sjögren <martin@strakt.com>
370
371 * Released version 0.5.1.
372
3732002-09-09 Martin Sjögren <martin@strakt.com>
374
375 * setup.cfg: Fixed build requirements for rpms.
376
3772002-09-07 Martin Sjögren <martin@strakt.com>
378
379 * src/ssl/connection.c: Fix sendall() method. It segfaulted because
380 it was too generous about giving away the GIL.
381 * Added SecureXMLRPCServer example, contributed by Michal Wallace.
382
3832002-09-06 Martin Sjögren <martin@strakt.com>
384
385 * setup.cfg: Updated the build requirements.
386 * src/ssl/connection.c: Fix includes for AIX.
387
3882002-09-04 Anders Hammarquist <iko@strakt.com>
389
390 * Added type checks in all the other places where we expect
391 specific types of objects passed.
392
3932002-09-04 Martin Sjögren <martin@strakt.com>
394
395 * src/crypto/crypto.c: Added an explicit type check in the dump_*
396 functions, so that they won't die when e.g. None is passed in.
397
3982002-08-25 Martin Sjögren <martin@strakt.com>
399
400 * doc/pyOpenSSL.tex: Docs for PKCS12.
401
4022002-08-24 Martin Sjögren <martin@strakt.com>
403
404 * src/crypto: Added basic PKCS12 support, thanks to Mark Welch
405 <mark@collab.net>
406
4072002-08-16 Martin Sjögren <martin@strakt.com>
408
409 * D'oh! Fixes for python 1.5 and python 2.1.
410
4112002-08-15 Martin Sjögren <martin@strakt.com>
412
413 * Version 0.5. Yay!
414
4152002-07-25 Martin Sjögren <martin@strakt.com>
416
417 * src/ssl/context.c: Added set_options method.
418 * src/ssl/ssl.c: Added constants for Context.set_options method.
419
4202002-07-23 Martin Sjögren <martin@strakt.com>
421
422 * Updated docs
423 * src/ssl/connection.c: Changed the get_cipher_list method to actually
424 return a list! WARNING: This change makes the API incompatible with
425 earlier versions!
426
4272002-07-15 Martin Sjögren <martin@strakt.com>
428
429 * src/ssl/connection.[ch]: Removed the fileno method, it uses the
430 transport object's fileno instead.
431
4322002-07-09 Martin Sjögren <martin@strakt.com>
433
434 * src/crypto/x509.c src/crypto/x509name.c: Fixed segfault bug where
435 you used an X509Name after its X509 had been destroyed.
436 * src/crypto/crypto.[ch] src/crypto/x509req.c src/crypto/x509ext.[ch]:
437 Added X509 Extension support. Thanks to maas-Maarten Zeeman
438 <maas@awanim.com>
439 * src/crypto/pkey.c: Added bits() and type() methods.
440
4412002-07-08 Martin Sjögren <martin@strakt.com>
442
443 * src/ssl/connection.c: Moved the contents of setup_ssl into the
444 constructor, thereby fixing some segfault bugs :)
445 * src/ssl/connection.c: Added connect_ex and sendall methods.
446 * src/crypto/x509name.c: Cleaned up comparisons and NID lookup.
447 Thank you Maas-Maarten Zeeman <maas@awanim.com>
448 * src/rand/rand.c: Fix RAND_screen import.
449 * src/crypto/crypto.c src/crypto/pkcs7.[ch]: Added PKCS7 management,
450 courtesy of Maas-Maarten Zeeman <maas@awanim.com>
451 * src/crypto/x509req.c: Added verify method.
452
4532002-06-17 Martin Sjögren <martin@strakt.com>
454
455 * rpm/, setup.cfg: Added improved RPM-building stuff, thanks to
456 Mihai Ibanescu <misa@redhat.com>
457
4582002-06-14 Martin Sjögren <martin@strakt.com>
459
460 * examples/proxy.py: Example code for using OpenSSL through a proxy
461 contributed by Mihai Ibanescu <misa@redhat.com>
462 * Updated installation instruction and added them to the TeX manual.
463
4642002-06-13 Martin Sjögren <martin@strakt.com>
465
466 * src/ssl/context.c: Changed global_verify_callback so that it uses
467 PyObject_IsTrue instead of requring ints.
468 * Added pymemcompat.h to make the memory management uniform and
469 backwards-compatible.
470 * src/util.h: Added conditional definition of PyModule_AddObject and
471 PyModule_AddIntConstant
472 * src/ssl/connection.c: Socket methods are no longer explicitly
473 wrapped. fileno() is the only method the transport layer object HAS
474 to support, but if you want to use connect, accept or sock_shutdown,
475 then the transport layer object has to supply connect, accept
476 and shutdown respectively.
477
4782002-06-12 Martin Sjögren <martin@strakt.com>
479
480 * Changed comments to docstrings that are visible in Python.
481 * src/ssl/connection.c: Added set_connect_state and set_accept_state
482 methods. Thanks to Mark Welch <mark@collab.net> for this.
483
4842002-06-11 Martin Sjögren <martin@strakt.com>
485
486 * src/ssl/connection.c: accept and connect now use SSL_set_accept_state
487 and SSL_set_connect_state respectively, instead of SSL_accept and
488 SSL_connect.
489 * src/ssl/connection.c: Added want_read and want_write methods.
490
4912002-06-05 Martin Sjögren <martin@strakt.com>
492
493 * src/ssl/connection.c: Added error messages for windows. The code is
494 copied from Python's socketmodule.c. Ick.
495 * src/ssl/connection.c: Changed the parameters to the SysCallError. It
496 always has a tuple (number, string) now, even though the number
497 might not always be useful.
498
4992002-04-05 Martin Sjögren <md9ms@mdstud.chalmers.se>
500
501 * Worked more on the Debian packaging, hopefully the packages
502 are getting into the main Debian archive soon.
503
5042002-01-10 Martin Sjögren <martin@strakt.com>
505
506 * Worked some more on the Debian packaging, it's turning out real
507 nice.
508 * Changed format on this file, I'm going to try to be a bit more
509 verbose about my changes, and this format makes it easier.
510
5112002-01-08 Martin Sjögren <martin@strakt.com>
512
513 * Version 0.4.1
514 * Added some example code
515 * Added the thread safe Connection object in the 'tsafe' submodule
516 * New Debian packaging
517
5182001-08-09 Martin Sjögren <martin@strakt.com>
519
520 * Version 0.4
521 * Added a compare function for X509Name structures.
522 * Moved the submodules to separate .so files, with tiny C APIs so they
523 can communicate
524 * Skeletal OpenSSL/__init__.py
525 * Removed the err submodule, use crypto.Error and SSL.Error instead
526
5272001-08-06 Martin Sjögren <martin@strakt.com>
528
529 * Version 0.3
530 * Added more types for dealing with certificates (X509Store, X509Req,
531 PKey)
532 * Functionality to load private keys, certificates and certificate
533 requests from memory buffers, and store them too
534 * X509 and X509Name objects can now be modified as well, very neat when
535 creating certificates ;)
536 * Added SSL_MODE_AUTO_RETRY to smooth things for blocking sockets
537 * Added a sock_shutdown() method to the Connection type
538 * I don't understand why, but I can't use Py_InitModule() to create
539 submodules in Python 2.0, the interpreter segfaults on the cleanup
540 process when I do. I added a conditional compile on the version
541 number, falling back to my own routine. It would of course be nice to
542 investigate what is happening, but I don't have the time to do so
543 * Do INCREF on the type objects before inserting them in the
544 dictionary, so they will never reach refcount 0 (they are, after all,
545 statically allocated)
546
5472001-07-30 Martin Sjögren <martin@strakt.com>
548
549 * Version 0.2
550 * Lots of tweaking and comments in the code
551 * Now uses distutils instead of the stupid Setup file
552 * Hacked doc/tools/mkhowto, html generation should now work
553
5542001-07-16 Martin Sjögren <martin@strakt.com>
555
556 * Initial release (0.1, don't expect much from this one :-)
557