Differences between revisions 1 and 2
Revision 1 as of 2010-11-09 14:52:08
Size: 244
Editor: techtonik
Comment: SSL intro
Revision 2 as of 2010-11-09 14:59:29
Size: 748
Editor: techtonik
Comment: + information about limitation across Python versions
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

=== SSL libraries availability and limitations ===
 * Python 2.5 (the version AppEngine is running)
SSL support is available from http://pypi.python.org/pypi/ssl Unfortunately, no binaries are available for Windows, and that's a major showstopper when using Python 2.5.

 * Python 2.6
SSL module from http://pypi.python.org/pypi/ssl is bundled with installer. But it has some bugs (unfortunately, Python bug tracker doesn't allow to query these reliably)

=== Validating server certificate ===

SSL stands for Secure Sockets Layer and is designed to create secure connection between client and server. Secure means that connection is encrypted and therefore protected from eavesdropping. It also allows to validate server identity.

SSL libraries availability and limitations

  • Python 2.5 (the version AppEngine is running)

SSL support is available from http://pypi.python.org/pypi/ssl Unfortunately, no binaries are available for Windows, and that's a major showstopper when using Python 2.5.

  • Python 2.6

SSL module from http://pypi.python.org/pypi/ssl is bundled with installer. But it has some bugs (unfortunately, Python bug tracker doesn't allow to query these reliably)

Validating server certificate

SSL (last edited 2010-11-21 08:55:53 by techtonik)

Unable to edit the page? See the FrontPage for instructions.