diff options
Diffstat (limited to 'Doc/library/hashlib.rst')
-rw-r--r-- | Doc/library/hashlib.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index 6eb3a7b..b737d22 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -82,8 +82,8 @@ library that Python uses on your platform. On most platforms the .. versionchanged:: 3.9 All hashlib constructors take a keyword-only argument *usedforsecurity* - with default value *True*. A false value allows the use of insecure and - blocked hashing algorithms in restricted environments. *False* indicates + with default value ``True``. A false value allows the use of insecure and + blocked hashing algorithms in restricted environments. ``False`` indicates that the hashing algorithm is not used in a security context, e.g. as a non-cryptographic one-way compression function. |