I've just noticed this error when checking hashes of image files (like .HEIC). Note: this error does not occur when checking hashes of text files.
Two ways to generate hashes:
sha256sum * > hash.256
sha256sum --tag * > hash.256 -- BSD style
The first yields hash *filename ← note the asterisk
The second yields SHA256 (filename) = hash ← filename between parenthesis
Regardless, when using sha256sum -c hash.256 will always yield FAILED
If I copy both the hashes files and the hash.256 to a linux install, it will check hashes just fine, albeit some formatting is necessary to the filename component.
I've just noticed this error when checking hashes of image files (like .HEIC). Note: this error does not occur when checking hashes of text files.
Two ways to generate hashes:
sha256sum * > hash.256sha256sum --tag * > hash.256-- BSD styleThe first yields hash *filename ← note the asterisk
The second yields SHA256 (filename) = hash ← filename between parenthesis
Regardless, when using
sha256sum -c hash.256will always yield FAILEDIf I copy both the hashes files and the hash.256 to a linux install, it will check hashes just fine, albeit some formatting is necessary to the filename component.