Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Lib/secrets.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
managing secrets such as account authentication, tokens, and similar.

See PEP 506 for more information.
https://www.python.org/dev/peps/pep-0506/
https://peps.python.org/pep-0506/

"""

Expand All @@ -13,7 +13,6 @@


import base64
import binascii

from hmac import compare_digest
from random import SystemRandom
Expand Down Expand Up @@ -56,7 +55,7 @@ def token_hex(nbytes=None):
'f9bf78b9a18ce6d46a0cd2b0b86df9da'

"""
return binascii.hexlify(token_bytes(nbytes)).decode('ascii')
return token_bytes(nbytes).hex()

def token_urlsafe(nbytes=None):
"""Return a random URL-safe text string, in Base64 encoding.
Expand Down
Loading