Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1bc7068d
Commit
1bc7068d
authored
Dec 02, 2013
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #19784: poplib now supports SSLContext.check_hostname and server name
indication for TLS/SSL connections.
parent
b8a3f581
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
3 deletions
+26
-3
Doc/library/poplib.rst
Doc/library/poplib.rst
+9
-0
Lib/poplib.py
Lib/poplib.py
+6
-2
Lib/test/test_poplib.py
Lib/test/test_poplib.py
+8
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/poplib.rst
View file @
1bc7068d
...
...
@@ -53,6 +53,10 @@ The :mod:`poplib` module provides two classes:
.. versionchanged:: 3.2
*context* parameter added.
.. versionchanged:: 3.4
The class now supports hostname check with
:attr:`SSLContext.check_hostname` and *Server Name Indicator* (see
:data:`~ssl.HAS_SNI`).
One exception is defined as an attribute of the :mod:`poplib` module:
...
...
@@ -198,6 +202,11 @@ An :class:`POP3` instance has the following methods:
.. versionadded:: 3.4
.. versionchanged:: 3.4
The method now supports hostname check with
:attr:`SSLContext.check_hostname` and *Server Name Indicator* (see
:data:`~ssl.HAS_SNI`).
Instances of :class:`POP3_SSL` have no additional methods. The interface of this
subclass is identical to its parent.
...
...
Lib/poplib.py
View file @
1bc7068d
...
...
@@ -387,7 +387,9 @@ class POP3:
if context is None:
context = ssl._create_stdlib_context()
resp = self._shortcmd('
STLS
')
self.sock = context.wrap_socket(self.sock)
server_hostname = self.host if ssl.HAS_SNI else None
self.sock = context.wrap_socket(self.sock,
server_hostname=server_hostname)
self.file = self.sock.makefile('rb')
self._tls_established = True
return resp
...
...
@@ -428,7 +430,9 @@ if HAVE_SSL:
def _create_socket(self, timeout):
sock = POP3._create_socket(self, timeout)
sock = self.context.wrap_socket(sock)
server_hostname = self.host if ssl.HAS_SNI else None
sock = self.context.wrap_socket(sock,
server_hostname=server_hostname)
return sock
def stls(self, keyfile=None, certfile=None, context=None):
...
...
Lib/test/test_poplib.py
View file @
1bc7068d
...
...
@@ -23,7 +23,8 @@ if hasattr(poplib, 'POP3_SSL'):
import
ssl
SUPPORTS_SSL
=
True
CERTFILE
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
)
or
os
.
curdir
,
"keycert.pem"
)
CERTFILE
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
)
or
os
.
curdir
,
"keycert3.pem"
)
CAFILE
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
)
or
os
.
curdir
,
"pycacert.pem"
)
requires_ssl
=
skipUnless
(
SUPPORTS_SSL
,
'SSL not supported'
)
# the dummy data returned by server when LIST and RETR commands are issued
...
...
@@ -332,6 +333,12 @@ class TestPOP3Class(TestCase):
def
test_stls_context
(
self
):
expected
=
b'+OK Begin TLS negotiation'
ctx
=
ssl
.
SSLContext
(
ssl
.
PROTOCOL_TLSv1
)
ctx
.
load_verify_locations
(
CAFILE
)
ctx
.
verify_mode
=
ssl
.
CERT_REQUIRED
ctx
.
check_hostname
=
True
with
self
.
assertRaises
(
ssl
.
CertificateError
):
resp
=
self
.
client
.
stls
(
context
=
ctx
)
self
.
client
=
poplib
.
POP3
(
"localhost"
,
self
.
server
.
port
,
timeout
=
3
)
resp
=
self
.
client
.
stls
(
context
=
ctx
)
self
.
assertEqual
(
resp
,
expected
)
...
...
Misc/NEWS
View file @
1bc7068d
...
...
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
- Issue #19784: poplib now supports SSLContext.check_hostname and server name
indication for TLS/SSL connections.
- Issue #19782: imaplib now supports SSLContext.check_hostname and server name
indication for TLS/SSL connections.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment