It made sense to have this as a separate section when there were multiple configuration options (digests and hash_function) but hash_function is now gone.
Signed-off-by: Matt Turner <[email protected]> --- doc/catalyst-config.5.txt | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/doc/catalyst-config.5.txt b/doc/catalyst-config.5.txt index f17944b2..7ac9a2a3 100644 --- a/doc/catalyst-config.5.txt +++ b/doc/catalyst-config.5.txt @@ -38,8 +38,13 @@ Basic configuration *digests*:: Create a `.DIGESTS` file containing the hash output from any of the supported options below. Adding them all may take a long time. -(example: `md5 sha1 sha512 whirlpool`). See the *SUPPORTED HASHES* -section for a list of supported hashes. +(example: `md5 sha1 sha512 whirlpool`). The set of supported hashes +is dependent on the version of Python. To see the set of hashes +supported by the version of Python in use, run ++ +--------------------------------- +$ python3 -c 'import hashlib; print(hashlib.algorithms_available)' +--------------------------------- *envscript*:: Environment script location, which allows users to set options such as @@ -154,14 +159,6 @@ takes place in RAM. This feature requires a pretty large tmpfs much RAM everything will fail horribly and it is not our fault. -SUPPORTED HASHES ----------------- -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 --------------------------- This section is only important if you are using binary packages to -- 2.26.2
