First commit, Vystem v0.1
This commit is contained in:
13
Blastproof/keygen/argon2/kats/check-sums.sh
Executable file
13
Blastproof/keygen/argon2/kats/check-sums.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
for file in `ls | grep '^[a-z2]*\(_v\)\?[0-9]*$' | xargs`
|
||||
do
|
||||
new=`shasum -a 256 $file`
|
||||
old=`cat $file.shasum`
|
||||
if [ "$new" = "$old" ]
|
||||
then
|
||||
echo $file "\t" OK
|
||||
else
|
||||
echo $file "\t" ERROR
|
||||
fi
|
||||
done
|
||||
Reference in New Issue
Block a user