mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-04-28 14:08:15 +00:00
12 lines
160 B
Perl
Executable File
12 lines
160 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
BEGIN {
|
|
require Digest::SHA; Digest::SHA->import(qw(sha256_hex sha512_hex));
|
|
}
|
|
|
|
$/=undef;
|
|
|
|
while(<>) {
|
|
print sha512_hex($_)," $ARGV\n";
|
|
}
|