How to Install and Uninstall python2-backports-ssl_match_hostname.noarch Package on CentOS 8 / RHEL 8

Last updated: July 01,2024

1. Install "python2-backports-ssl_match_hostname.noarch" package

Please follow the step by step instructions below to install python2-backports-ssl_match_hostname.noarch on CentOS 8 / RHEL 8

$ sudo dnf update $ sudo dnf install python2-backports-ssl_match_hostname.noarch

2. Uninstall "python2-backports-ssl_match_hostname.noarch" package

Please follow the guidance below to uninstall python2-backports-ssl_match_hostname.noarch on CentOS 8 / RHEL 8:

$ sudo dnf remove python2-backports-ssl_match_hostname.noarch $ sudo dnf autoremove

3. Information about the python2-backports-ssl_match_hostname.noarch package on CentOS 8 / RHEL 8

Last metadata expiration check: 1 day, 7:40:42 ago on Sun May 9 13:03:46 2021.
Available Packages
Name : python2-backports-ssl_match_hostname
Version : 3.5.0.1
Release : 11.module_el8.3.0+478+7570e00c
Architecture : noarch
Size : 16 k
Source : python-backports-ssl_match_hostname-3.5.0.1-11.module_el8.3.0+478+7570e00c.src.rpm
Repository : appstream
Summary : The ssl.match_hostname() function from Python 3
URL : https://bitbucket.org/brandon/backports.ssl_match_hostname
License : Python
Description : 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 now includes
: a match_hostname() function for performing this check instead of requiring
: every application to implement the check separately.
:
: This backport brings match_hostname() to users of earlier versions of Python.
: The actual code is only slightly modified from Python 3.5.