Skip to content
Snippets Groups Projects
Commit 14e92b8e authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Make checksums smaller; use the file size and only the first six

characters from the MD5 hex digest...
parent 9fdec2e7
No related branches found
No related tags found
No related merge requests found
......@@ -974,6 +974,10 @@ sub dbi
# --------------------------------------------------------------------------------
# Compute a checksum of a file. This checksum is not a straight MD5
# hex digest, but instead the file size combined with the first six
# characters of the MD5 hex digest. This is to save space.
sub md5sum
{
my $file = shift;
......@@ -988,11 +992,14 @@ sub md5sum
open( FILE, $file );
binmode(FILE);
my $md5 = Digest::MD5->new->addfile(*FILE)->hexdigest();
my $checksum = sprintf( "%d/%s",
[ stat FILE ]->[7],
substr( Digest::MD5->new()->addfile(*FILE)->hexdigest(), 0, 6 )
);
close(FILE);
return $md5;
return $checksum;
}
# --------------------------------------------------------------------------------
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment