##// END OF EJS Templates
sslutil: migrate to hashutil.sha1 instead of hashlib.sha1...
Augie Fackler -
r44513:fde05ece default draft
parent child Browse files
Show More
@@ -24,6 +24,7 b' from . import ('
24 24 util,
25 25 )
26 26 from .utils import (
27 hashutil,
27 28 resourceutil,
28 29 stringutil,
29 30 )
@@ -949,7 +950,7 b' def validatesocket(sock):'
949 950 # If a certificate fingerprint is pinned, use it and only it to
950 951 # validate the remote cert.
951 952 peerfingerprints = {
952 b'sha1': node.hex(hashlib.sha1(peercert).digest()),
953 b'sha1': node.hex(hashutil.sha1(peercert).digest()),
953 954 b'sha256': node.hex(hashlib.sha256(peercert).digest()),
954 955 b'sha512': node.hex(hashlib.sha512(peercert).digest()),
955 956 }
General Comments 0
You need to be logged in to leave comments. Login now