SSL in Python

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chris Rennert

    SSL in Python

    I noticed in the documentation that they have ssl() in Python, but it says
    only if configured. I just can't find info on how to configure SSL in
    Python.
    My goal is to write a simple p-2-p chat, but have all info encrypted between
    clients.
    Any help you could give me would be greatly appreciated!

    Chris


  • Jp Calderone

    #2
    Re: SSL in Python

    On Wed, Jun 25, 2003 at 11:23:57AM -0500, Chris Rennert wrote:[color=blue]
    > I noticed in the documentation that they have ssl() in Python, but it says
    > only if configured. I just can't find info on how to configure SSL in
    > Python. My goal is to write a simple p-2-p chat, but have all info
    > encrypted between clients. Any help you could give me would be greatly
    > appreciated![/color]

    Python's built-in SSL support only works for clients, not servers.
    Several third party modules exist to provide server support, PyOpenSSL my
    personal favorite. The gory details of this (and other networking issues)
    are dealt with by Twisted: http://www.twistedmatrix.com/.

    Jp

    --
    Seduced, shaggy Samson snored.
    She scissored short. Sorely shorn,
    Soon shackled slave, Samson sighed,
    Silently scheming,
    Sightlessly seeking
    Some savage, spectacular suicide.
    -- Stanislaw Lem, "Cyberiad"

    Comment

    • Chris Rennert

      #3
      Re: SSL in Python

      Thanks, I am on my way there now.
      Again thank you for the quick reply

      Chris
      "Jp Calderone" <exarkun@intarw eb.us> wrote in message
      news:mailman.10 56561529.27235. python-list@python.org ...[color=blue]
      > On Wed, Jun 25, 2003 at 11:23:57AM -0500, Chris Rennert wrote:[color=green]
      > > I noticed in the documentation that they have ssl() in Python, but it[/color][/color]
      says[color=blue][color=green]
      > > only if configured. I just can't find info on how to configure SSL in
      > > Python. My goal is to write a simple p-2-p chat, but have all info
      > > encrypted between clients. Any help you could give me would be greatly
      > > appreciated![/color]
      >
      > Python's built-in SSL support only works for clients, not servers.
      > Several third party modules exist to provide server support, PyOpenSSL my
      > personal favorite. The gory details of this (and other networking issues)
      > are dealt with by Twisted: http://www.twistedmatrix.com/.
      >
      > Jp
      >
      > --
      > Seduced, shaggy Samson snored.
      > She scissored short. Sorely shorn,
      > Soon shackled slave, Samson sighed,
      > Silently scheming,
      > Sightlessly seeking
      > Some savage, spectacular suicide.
      > -- Stanislaw Lem, "Cyberiad"
      >[/color]


      Comment

      Working...