File tree 3 files changed +10
-7
lines changed
3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 36
36
import datetime
37
37
import enum
38
38
import ipaddress
39
- import ssl
40
39
import base64
41
40
import re
42
41
53
52
from pyasn1_modules import rfc2315 , rfc2459
54
53
import six
55
54
55
+ from urllib3 .util import ssl_match_hostname
56
+
57
+ # make the CertificateError exception available via re-export
58
+ # pylint: disable=unused-import
59
+ from urllib3 .util .ssl_match_hostname import CertificateError
60
+
56
61
from ipalib import errors
57
62
from ipapython .dnsutil import DNSName
58
63
@@ -385,6 +390,7 @@ def san_a_label_dns_names(self):
385
390
return result
386
391
387
392
def match_hostname (self , hostname ):
393
+ # The caller is expected to catch any exceptions
388
394
match_cert = {}
389
395
390
396
match_cert ['subject' ] = match_subject = []
@@ -401,8 +407,7 @@ def match_hostname(self, hostname):
401
407
for value in values :
402
408
match_san .append (('DNS' , value ))
403
409
404
- # deprecated in Python3.7 without replacement
405
- ssl .match_hostname ( # pylint: disable=deprecated-method
410
+ ssl_match_hostname .match_hostname (
406
411
match_cert , DNSName (hostname ).ToASCII ()
407
412
)
408
413
Original file line number Diff line number Diff line change 30
30
import os
31
31
import re
32
32
import shutil
33
- import ssl
34
33
import sys
35
34
import syslog
36
35
import time
@@ -2378,7 +2377,7 @@ def check_ipa_ca_san(cert):
2378
2377
2379
2378
try :
2380
2379
cert .match_hostname (expect )
2381
- except ssl .CertificateError :
2380
+ except x509 .CertificateError :
2382
2381
raise errors .ValidationError (
2383
2382
name = 'certificate' ,
2384
2383
error = 'Does not have a \' {}\' SAN' .format (expect )
Original file line number Diff line number Diff line change 12
12
import glob
13
13
import shutil
14
14
import fileinput
15
- import ssl
16
15
import stat
17
16
import sys
18
17
import tempfile
@@ -717,7 +716,7 @@ def http_certificate_ensure_ipa_ca_dnsname(http):
717
716
718
717
try :
719
718
cert .match_hostname (expect )
720
- except ssl .CertificateError :
719
+ except x509 .CertificateError :
721
720
if certs .is_ipa_issued_cert (api , cert ):
722
721
request_id = certmonger .get_request_id (
723
722
{'cert-file' : paths .HTTPD_CERT_FILE })
You can’t perform that action at this time.
0 commit comments