Merge "py3: Fix hashlib usage" into f/centos8

This commit is contained in:
Zuul 2021-07-15 15:32:20 +00:00 committed by Gerrit Code Review
commit 657bf7b397
1 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ import textwrap
from datetime import datetime
from dateutil import parser
from oslo_utils import encodeutils
from prettytable import ALL
from prettytable import FRAME
from prettytable import NONE
@ -56,7 +57,7 @@ class HelpFormatter(argparse.HelpFormatter):
def safe_header(name, value):
if value is not None and name in SENSITIVE_HEADERS:
h = hashlib.sha1(value)
h = hashlib.sha1(encodeutils.safe_encode(value))
d = h.hexdigest()
return name, "{SHA1}%s" % d
else: