diff options
| author | Christian Heimes <christian@cheimes.de> | 2013-11-20 11:46:18 +0100 |
|---|---|---|
| committer | Christian Heimes <christian@cheimes.de> | 2013-11-20 11:46:18 +0100 |
| commit | 985ecdcfc29adfc36ce2339acf03f819ad414869 (patch) | |
| tree | 06a11f82271e768dbe49469c8736b65b083f671c /Doc/library | |
| parent | fe32aec25a8b36498d840bd69485e9bc94195b9c (diff) | |
| download | cpython-git-985ecdcfc29adfc36ce2339acf03f819ad414869.tar.gz | |
ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'.
Python now uses SipHash24 on all major platforms.
Diffstat (limited to 'Doc/library')
| -rw-r--r-- | Doc/library/sys.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 341764a328..b885de89e0 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -594,9 +594,20 @@ always available. | :const:`imag` | multiplier used for the imaginary part of a | | | complex number | +---------------------+--------------------------------------------------+ + | :const:`algorithm` | name of the algorithm for hashing of str, bytes, | + | | and memoryview | + +---------------------+--------------------------------------------------+ + | :const:`hash_bits` | internal output size of the hash algorithm | + +---------------------+--------------------------------------------------+ + | :const:`seed_bits` | size of the seed key of the hash algorithm | + +---------------------+--------------------------------------------------+ + .. versionadded:: 3.2 + .. versionchanged: 3.4 + Added *algorithm*, *hash_bits* and *seed_bits* + .. data:: hexversion |
