diff options
author | 2020-04-16 20:21:34 -0700 | |
---|---|---|
committer | 2020-04-17 10:20:18 -0700 | |
commit | 6565ad2eb90fe0840047d097fa5637d176a7d580 (patch) | |
tree | d9bffc695ccb5e7d7d5a4a436d5d08794573c6bb /doc | |
parent | catalyst: Remove the 'hash_function' config option (diff) | |
download | catalyst-6565ad2eb90fe0840047d097fa5637d176a7d580.tar.gz catalyst-6565ad2eb90fe0840047d097fa5637d176a7d580.tar.bz2 catalyst-6565ad2eb90fe0840047d097fa5637d176a7d580.zip |
catalyst: Use hashlib instead of external tools
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/catalyst-config.5.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/catalyst-config.5.txt b/doc/catalyst-config.5.txt index d5e8c128..14b7dd5a 100644 --- a/doc/catalyst-config.5.txt +++ b/doc/catalyst-config.5.txt @@ -181,10 +181,10 @@ much RAM everything will fail horribly and it is not our fault. SUPPORTED HASHES ---------------- -Supported hashes: adler32, crc32, crc32b, gost, haval128, haval160, -haval192, haval224, haval256, md2, md4, md5, ripemd128, ripemd160, -ripemd256, ripemd320, sha1, sha224, sha256, sha384, sha512, snefru128, -snefru256, tiger, tiger128, tiger160, whirlpool. +The list of supported hashes is dependent on the version of Python. To +see the list of hashes supported by the version of Python in use, run + + $ python3 -c 'import hashlib; print(hashlib.algorithms_available)' BINARY PACKAGE DEPENDENCIES |