Hello,
How do I create a SHA file check file?
I want to create something like a .sfv -file for my archives.
I know that md5 isn't good anymore.
Can anyone help?
Thanks,
unreal_champion
How do I create a SHA filecheck-file
Re: How do I create a SHA filecheck-file
sfv = Simple File Verify format file
It uses crc32 checksums instead of MD5 checksums.
I think your are mixing 2 things.
MD5 and SHA are also used to hash password,
and there have been found some weakness in it.
But for file verification it should be good enough.
You can use the linux program cfv
To install it on ubuntu or debian:
If you don't want exactly sfv-files.
You can create file check with sha1sum:
It uses crc32 checksums instead of MD5 checksums.
I think your are mixing 2 things.
MD5 and SHA are also used to hash password,
and there have been found some weakness in it.
But for file verification it should be good enough.
You can use the linux program cfv
To install it on ubuntu or debian:
Code: Select all
sudo apt-get install cfv
If you don't want exactly sfv-files.
You can create file check with sha1sum:
Code: Select all
sha1sum testfile.iso > shasum_file.sha
sha1sum --check shasum_file.sha