You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(9) |
Sep
(2) |
Oct
(15) |
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(17) |
Feb
(2) |
Mar
(3) |
Apr
(2) |
May
(1) |
Jun
|
Jul
(9) |
Aug
(4) |
Sep
|
Oct
|
Nov
(4) |
Dec
(1) |
2004 |
Jan
|
Feb
(2) |
Mar
(7) |
Apr
(1) |
May
|
Jun
|
Jul
(4) |
Aug
(6) |
Sep
(13) |
Oct
(5) |
Nov
(1) |
Dec
(4) |
2005 |
Jan
(1) |
Feb
(7) |
Mar
(2) |
Apr
(2) |
May
|
Jun
(1) |
Jul
(7) |
Aug
(5) |
Sep
(3) |
Oct
(4) |
Nov
|
Dec
(1) |
2006 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
(1) |
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(9) |
Dec
(2) |
2007 |
Jan
(4) |
Feb
|
Mar
(2) |
Apr
(1) |
May
(5) |
Jun
(6) |
Jul
|
Aug
(7) |
Sep
|
Oct
(1) |
Nov
(2) |
Dec
|
2008 |
Jan
(2) |
Feb
|
Mar
(10) |
Apr
(4) |
May
(3) |
Jun
(3) |
Jul
(5) |
Aug
(2) |
Sep
(30) |
Oct
(12) |
Nov
(5) |
Dec
(2) |
2009 |
Jan
(7) |
Feb
(1) |
Mar
(26) |
Apr
(20) |
May
(4) |
Jun
(1) |
Jul
(7) |
Aug
(21) |
Sep
(2) |
Oct
(9) |
Nov
(8) |
Dec
|
2010 |
Jan
(4) |
Feb
(5) |
Mar
(3) |
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
(3) |
Dec
|
2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
(13) |
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(6) |
Nov
(11) |
Dec
|
2012 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(1) |
Aug
(13) |
Sep
(1) |
Oct
|
Nov
|
Dec
(3) |
From: Martin <md...@md...> - 2002-08-15 21:54:25
|
I forgot to mention this in the announcement mail. We've set up a pserver for anonymous (readonly) access to the pyOpenSSL CVS, generously hosted by Strakt. The CVSROOT is :pserver:ano...@cv...:/u/cvs/pyopenssl, the module is pyOpenSSL. Happy hacking, and send lots of patches ;) Martin |
From: Dave A. <da...@im...> - 2002-08-15 21:40:57
|
Yay!!! My project, a fully featured SSL MITM Proxy (www.immunitysec.com/spike.html) works well with the version I've been using. I'll update that right now and see. :> Has anyone distributed a binary of this module for windows users? -dave On Thu, 2002-08-15 at 17:23, Martin Sj=F6gren wrote: > I'm happy to announce that pyOpenSSL 0.5 has been released. It includes > many bug fixes and a lot of new functionality. Mainly thanks to numerous > contributions from an (apparently!) growing user base. Thank you everyone= ! >=20 > The goodies include: > * X509Extensions > * PKCS7 > * Better support for RPM building > * More example code > * It works with Python 1.5 (for what it's worth ;)) >=20 > Grab the release from > http://sf.net/project/showfiles.php?group_id=3D31249&release_id=3D105405 >=20 >=20 > Regards, > Martin Sj=F6gren >=20 > --=20 > Martin Sj=F6gren > ma...@st... ICQ : 41245059 > Phone: +46 (0)31 7710870 Cell: +46 (0)739 169191 > GPG key: http://www.strakt.com/~martin/gpg.html >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r=3Dsourceforge1&refcode1=3Dvs3390 > _______________________________________________ > pyopenssl-list mailing list > pyo...@li... > https://lists.sourceforge.net/lists/listinfo/pyopenssl-list >=20 |
From: Martin <ma...@st...> - 2002-08-15 21:23:27
|
I'm happy to announce that pyOpenSSL 0.5 has been released. It includes many bug fixes and a lot of new functionality. Mainly thanks to numerous contributions from an (apparently!) growing user base. Thank you everyone= ! The goodies include: * X509Extensions * PKCS7 * Better support for RPM building * More example code * It works with Python 1.5 (for what it's worth ;)) Grab the release from http://sf.net/project/showfiles.php?group_id=3D31249&release_id=3D105405 Regards, Martin Sj=F6gren --=20 Martin Sj=F6gren ma...@st... ICQ : 41245059 Phone: +46 (0)31 7710870 Cell: +46 (0)739 169191 GPG key: http://www.strakt.com/~martin/gpg.html |
From: Itamar Shtull-T. <tw...@it...> - 2002-07-26 15:11:06
|
Eric Johnson wrote: > Does anyone know if a pyOpenSSL FTPS client exists, or have > any pointers on how to get started writing my own? Writing your own shouln't be hard - you'll need pyOpenSSL 0.5 or CVS though. The main thing that makes FTL/TLS difference is, I think, that when the server connects back to the client, the client is the one that initializes TLS, not the server, so you need to separate out TLS connect from TCP connect. Reading M2Crypto version should show you how to do it in any case. |
From: Eric J. <eri...@fl...> - 2002-07-26 14:05:23
|
Hello, I need an FTPS client that will work against the WS_FTP Server from Ipswitch (http://www.ipswitch.com/Products/WS_FTP-Server/index.html) It appears that I might be able to use one included with the M2Crypto module, but I'd rather see if I can get one (or write my own) with pyOpenSSL. I like it's design goal better that M2Crypto AND there are Debian packages for it! Does anyone know if a pyOpenSSL FTPS client exists, or have any pointers on how to get started writing my own? Thanks in advance, Eric -- // Eric Johnson (eri...@fl... || 603.766.2216) // Public Key: http://wwwkeys.us.pgp.net/ 0x634BB5E3 // // Anything cut to length will be too short. // // gpg (GnuPG) 1.0.6 - Copyright (C) 2001 Free Software Foundation, Inc. // Key fingerprint = CC0B 75C4 CC01 AC82 D24E BEE8 A4C0 06E9 634B B5E3 |
From: Martin <ma...@st...> - 2002-07-10 09:14:14
|
ons 2002-07-10 klockan 11.19 skrev Dave Aitel: > Nuts. I wanted to release spkproxy.py this week some time. :< Would it > be ok if I also distroed with it the pre5.tar.gz? I really need > set_accept_state() to work. Sure. > Also, since you already have a client.py, you might as well distro the > spkproxy.py, if you want. I'm going to be including it with SPIKE > (www.immunitysec.com/spike.html), which is GPL. But it seems like a > natural fit for client.py...:>=20 Cool, more example code is always good :-) > For what it's worth, I haven't had any problems with my pre5. :> Well, I have, but I've fixed those ;) Regards, Martin --=20 Martin Sj=F6gren ma...@st... ICQ : 41245059 Phone: +46 (0)31 7710870 Cell: +46 (0)739 169191 GPG key: http://www.strakt.com/~martin/gpg.html |
From: Dave A. <da...@im...> - 2002-07-10 09:11:59
|
Nuts. I wanted to release spkproxy.py this week some time. :< Would it be ok if I also distroed with it the pre5.tar.gz? I really need set_accept_state() to work. Also, since you already have a client.py, you might as well distro the spkproxy.py, if you want. I'm going to be including it with SPIKE (www.immunitysec.com/spike.html), which is GPL. But it seems like a natural fit for client.py...:>=20 For what it's worth, I haven't had any problems with my pre5. :> -dave On Wed, 2002-07-10 at 04:24, Martin Sj=F6gren wrote: > ons 2002-07-10 klockan 02.08 skrev Dave Aitel: > > Just out of curiosity...when is .5 scheduled for release?=20 >=20 > It's not scheduled :( but I sure hope to get it released before the end > of July... I've added some new features that got contributed by people > (X509 extensions, PKCS7...), general cleanup and a load of bug fixes. >=20 > So, somewhere within the next three weeks is as exact as it is right > now. Sorry I can't do better than that :( >=20 >=20 > Regards, > Martin >=20 > --=20 > Martin Sj=F6gren > ma...@st... ICQ : 41245059 > Phone: +46 (0)31 7710870 Cell: +46 (0)739 169191 > GPG key: http://www.strakt.com/~martin/gpg.html >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Two, two, TWO treats in one. > http://thinkgeek.com/sf > _______________________________________________ > pyopenssl-list mailing list > pyo...@li... > https://lists.sourceforge.net/lists/listinfo/pyopenssl-list >=20 |
From: Martin <ma...@st...> - 2002-07-10 08:25:04
|
ons 2002-07-10 klockan 02.08 skrev Dave Aitel: > Just out of curiosity...when is .5 scheduled for release?=20 It's not scheduled :( but I sure hope to get it released before the end of July... I've added some new features that got contributed by people (X509 extensions, PKCS7...), general cleanup and a load of bug fixes. So, somewhere within the next three weeks is as exact as it is right now. Sorry I can't do better than that :( Regards, Martin --=20 Martin Sj=F6gren ma...@st... ICQ : 41245059 Phone: +46 (0)31 7710870 Cell: +46 (0)739 169191 GPG key: http://www.strakt.com/~martin/gpg.html |
From: Dave A. <da...@im...> - 2002-07-10 00:01:19
|
Just out of curiosity...when is .5 scheduled for release?=20 -dave |