1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:07:45 +00:00

checksum: Add support for BLAKE2b

This commit is contained in:
implicitfield 2023-09-16 17:05:43 +04:00 committed by Ali Mohammad Pur
parent 1b3ad1c721
commit 7cb80c67d8
4 changed files with 8 additions and 3 deletions

View file

@ -5,6 +5,7 @@ checksum - helper program for calculating checksums
## Synopsis
```**sh
$ b2sum [options...] <file...>
$ md5sum [options...] <file...>
$ sha1sum [options...] <file...>
$ sha256sum [options...] <file...>
@ -14,7 +15,7 @@ $ sha512sum [options...] <file...>
## Description
This program calculates and print specified checksum of files. It cannot be run directly, only
as `md5sum`, `sha1sum`, `sha256sum` or `sha512sum`. A non-zero exit code is returned if the
as `b2sum`, `md5sum`, `sha1sum`, `sha256sum` or `sha512sum`. A non-zero exit code is returned if the
input cannot be read. If the '--check' option is used, a non-zero exit code is also returned
if the checksums cannot be verified.