From 1d4bab875aa93f793c45435a13aa1924df2aec9c Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 1 Jun 2021 21:17:50 +0200 Subject: [PATCH] btrfs-progs: drop "2b" from blake2 in speed test Internally it's blake2b but for the user facing output or other command line interfaces let's call it just BLAKE2. Signed-off-by: David Sterba --- crypto/hash-speedtest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/hash-speedtest.c b/crypto/hash-speedtest.c index 74a130ed..af6194e3 100644 --- a/crypto/hash-speedtest.c +++ b/crypto/hash-speedtest.c @@ -94,7 +94,7 @@ int main(int argc, char **argv) { { .name = "CRC32C", .digest = hash_crc32c, .digest_size = 4 }, { .name = "XXHASH", .digest = hash_xxhash, .digest_size = 8 }, { .name = "SHA256", .digest = hash_sha256, .digest_size = 32 }, - { .name = "BLAKE2b", .digest = hash_blake2b, .digest_size = 32 }, + { .name = "BLAKE2", .digest = hash_blake2b, .digest_size = 32 }, }; int units = 0;