feat: use cksum for sha2+3 hash
This commit is contained in:
Binary file not shown.
@@ -0,0 +1 @@
|
||||
SHA3-256 (plaintext.txt) = 8cdcfd9d0414adbba1bb146c214e181d7e5d7c8edde90b79dcb27df005fcc298
|
||||
|
||||
@@ -1,2 +1,4 @@
|
||||
plaintext.txt -Algorithm SHA256
|
||||
reads the plaintext file and calculates a unique hash string using the SHA-256 cryptographic algorithm.
|
||||
cksum -a sha2 --length 256 plaintext.txt > b-sha2.txt
|
||||
reads the plaintext file and calculates a unique hash string using the SHA2-256 cryptographic algorithm and writes it into b-sha2.txt
|
||||
cksum -a sha3 --length 256 plaintext.txt > b-sha3.txt
|
||||
reads the plaintext file and calculates a unique hash string using the SHA3-256 cryptographic algorithm and writes it into b-sha3.txt
|
||||
Reference in New Issue
Block a user