diff options
author | Rick Farina (Zero_Chaos) <zerochaos@gentoo.org> | 2020-02-13 11:19:13 -0500 |
---|---|---|
committer | Rick Farina (Zero_Chaos) <zerochaos@gentoo.org> | 2020-02-13 11:20:46 -0500 |
commit | 0a4e9cae78046c174c008fd7944937881a6786b2 (patch) | |
tree | f82524d8085c838d84ef686fcbdb602c8dbe7140 /etc | |
parent | kmerge.sh: Ignore missing package.provided (diff) | |
download | catalyst-0a4e9cae78046c174c008fd7944937881a6786b2.tar.gz catalyst-0a4e9cae78046c174c008fd7944937881a6786b2.tar.bz2 catalyst-0a4e9cae78046c174c008fd7944937881a6786b2.zip |
add blake2 support
support blake2 for hash and digest functions.
per jmbsvicetto, adjusting default digest from "sha512 whirlpool" to
"blake2 sha512" for now
additionally add blake2 sums for iso verification
Signed-off-by: Rick Farina (Zero_Chaos) <zerochaos@gentoo.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/catalyst.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/catalyst.conf b/etc/catalyst.conf index 5a5eedba..dd34fae3 100644 --- a/etc/catalyst.conf +++ b/etc/catalyst.conf @@ -8,11 +8,11 @@ # special "auto" keyword will skip digests that the system does not support, # and if it's the only keyword given, will default to enabling all digests. # Supported hashes: -# adler32, crc32, crc32b, gost, haval128, haval160, haval192, haval224, +# adler32, blake2, 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 -digests="sha512 whirlpool" +digests="blake2 sha512" # Creates a .CONTENTS file listing the contents of the file. Pick from any of # the supported options below: @@ -40,7 +40,7 @@ envscript="/etc/catalyst/catalystrc" # seedcache, etc. The default and fastest is crc32. You should not ever need # to change this unless your OS does not support it. # Supported hashes: -# adler32, crc32, crc32b, gost, haval128, haval160, haval192, haval224, +# adler32, blake2, 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 |