Mercurial > ec-dotfiles
view bin/testcrc @ 719:bcdf320dabf4
Rewrite the ed2k again in php
Getting openssl to hash md4 is a pain.
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 10 Dec 2023 00:35:22 +0900 |
parents | 5bafb912837e |
children |
line wrap: on
line source
#!/usr/bin/perl use strict; use warnings; use String::CRC32; my @files = @ARGV or print("Usage u fail") && exit(1); foreach(@files) { my $filename = $_; open(FILE,$filename); my $crc=crc32(*FILE); close(FILE); $crc=sprintf("%X",$crc); print("$filename: $crc\n"); }