1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 08:12:48 +01:00
imapsync/W/learn/digest

15 lines
190 B
Plaintext
Raw Normal View History

2017-09-23 23:54:48 +02:00
#!/usr/bin/perl
use strict ;
use warnings ;
require Digest ;
my $digest ;
eval { $digest = Digest->new( 'Whirlpool' ) ; } ;
$digest->add( '' ) ;
print $digest->hexdigest( ) . "\n" ;