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 <dsterba@suse.com>
This commit is contained in:
David Sterba 2021-06-01 21:17:50 +02:00
parent 5734073b15
commit 1d4bab875a
1 changed files with 1 additions and 1 deletions

View File

@ -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;