File: control

package info (click to toggle)
backports.ssl-match-hostname 3.5.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 88 kB
  • sloc: python: 113; makefile: 7
file content (32 lines) | stat: -rw-r--r-- 1,447 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Source: backports.ssl-match-hostname
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Nicolas Dandrimont <olasd@debian.org>
Build-Depends: debhelper (>= 9),
               dh-python,
               python-all,
               python-setuptools
Standards-Version: 3.9.8
X-Python-Version: >= 2.4
Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/backports.ssl-match-hostname.git
Vcs-Browser: https://anonscm.debian.org/git/python-modules/packages/backports.ssl-match-hostname.git
Homepage: https://bitbucket.org/brandon/backports.ssl_match_hostname

Package: python-backports.ssl-match-hostname
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Description: Backport of the Python 3.5 SSL hostname checking function
 The Secure Sockets layer is only actually secure if you check the
 hostname in the certificate returned by the server to which you are
 connecting, and verify that it matches to hostname that you are trying
 to reach.
 .
 But the matching logic, defined in RFC2818, can be a bit tricky to
 implement on your own. So the ssl package in the Standard Library of
 Python 3.2 and greater now includes a match_hostname() function for
 performing this check instead of requiring every application to
 implement the check separately.
 .
 This package contains a backport of the ssl.match_hostname function for
 Python 2.4 and above.