Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed3a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: Python-announce-list@python.org Delivered-To: python-announce-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'python.': 0.02; 'url:pypi': 0.03; 'pypi': 0.07; 'subject:ANN': 0.07; '(aka': 0.09; 'apis': 0.09; 'bindings': 0.09; 'decodes': 0.09; 'pyopenssl': 0.09; 'received:internal': 0.09; 'url:github': 0.09; 'api': 0.11; 'python': 0.11; 'bug': 0.12; 'calderone': 0.16; 'emit': 0.16; 'jean-paul': 0.16; 'received:10.202': 0.16; 'received:10.202.2': 0.16; 'received:66.111': 0.16; 'received:66.111.4': 0.16; 'received:messagingengine.com': 0.16; 'strings*': 0.16; 'tends': 0.16; 'tls': 0.16; 'to:addr:python-announce-list': 0.16; 'passing': 0.19; 'slightly': 0.19; 'subject:] ': 0.20; 'unicode': 0.24; 'developing': 0.27; 'received:172.16': 0.29; 'generally': 0.29; 'direction': 0.30; 'primarily': 0.30; "i'm": 0.30; 'accidentally': 0.31; 'implicit': 0.31; 'mirror': 0.31; 'url:python': 0.33; 'announce': 0.33; 'received:66': 0.35; 'but': 0.35; 'url:org': 0.36; 'project': 0.37; 'received:10': 0.37; 'thank': 0.38; 'focused': 0.38; 'subject:[': 0.39; 'moving': 0.39; 'support,': 0.39; 'to:addr:python.org': 0.39; 'release': 0.40; 'skip:u 10': 0.60; 'authority': 0.60; 'hope': 0.61; 'include:': 0.61; 'providing': 0.61; 'more': 0.64; 'great': 0.65; 'to:2**2': 0.65; 'worth': 0.66; 'due': 0.66; 'url:0': 0.67; 'default': 0.69; 'greetings': 0.72; 'to:no real name:2**2': 0.72; '2.7.': 0.84; 'details!': 0.84; 'it\xe2\x80\x99s': 0.84; 'we\xe2\x80\x99d': 0.84; 'cryptography': 0.91; '***': 0.95 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:message-id:mime-version:subject:to:x-sasl-enc :x-sasl-enc; s=smtpout; bh=emEw11YFHp7u5oRsKsnNcaRIYMw=; b=NXUNL jUU9UrOUPKhCfbMnZO/q+dB7UntZu456Vty0GCxDTTrp4g15FuwlrFhQ+ecpof7c TbRyQsIBd03g5L4OASAbIGktskSIvE6jvnZDW+355XcR+CawvDy3tumbbijZcHUH HKKgiD4SDYPJXun0TxkTJU5gcD+rR4zujYvGQE= X-Sasl-enc: 6KnGV8gL9rSPt5t/YPCOfLMWlzci/b2vVKp6pcIZ+YyZ 1429030441 From: "Hynek Schlawack" To: Python-announce-list@python.org, cryptography-dev@python.org, pyopenssl-users@python.org, twisted-python@twistedmatrix.com Subject: [ANN] pyOpenSSL 0.15 Date: Tue, 14 Apr 2015 12:54:00 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Mailer: MailMate (1.9.1r5084) X-Mailman-Approved-At: Tue, 14 Apr 2015 22:05:11 +0200 X-BeenThere: python-announce-list@python.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Announcement-only list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Approved: python-announce-list@python.org Newsgroups: comp.lang.python.announce Message-ID: Lines: 43 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1429041912 news.xs4all.nl 2913 [2001:888:2000:d::a6]:33591 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python.announce:1666 Greetings fellow Pythoneers, I'm happy to announce that pyOpenSSL 0.15 is now available. pyOpenSSL is a set of Python bindings for OpenSSL. It includes some low-level cryptography APIs but is primarily focused on providing an API for using the TLS protocol from Python. Check out the PyPI page () for downloads. *** This is the last release under the stewardship of Jean-Paul Calderone and the maintainership is now taken over by the Python Cryptography Authority (PyCA) which has been developing the C-bindings for pyOpenSSL for a while (aka cryptography). We’d like to thank him for his great work over the past years and hope to be able to keep moving the project into a direction that will make him only slightly sad. *** The highlights of this release include: - Support to ECDHE, - NPN and ALPN support, - …many bug fixes! It’s worth pointing out that OpenSSL functions generally work on *byte strings* because they mirror OpenSSL APIs and OpenSSL is not Unicode-aware. Passing Unicode strings tends to accidentally work due do implicit decodes on Python 2 but they emit a DeprecationWarning now. Please note that DeprecationWarnings are silenced by default on Python 2.7. See the ChangeLog at for more details! On behalf of PyCA, Hynek Schlawack