mirror of
https://github.com/stephenenelson/convert-binhex.git
synced 2025-02-17 02:31:39 +00:00
13 lines
230 B
Perl
13 lines
230 B
Perl
use strict;
|
|
use warnings;
|
|
|
|
use Test::More;
|
|
use Convert::BinHex 'binhex_crc';
|
|
|
|
# Random data
|
|
my $data = "U1SBdxdMHpA2wlW3TOgUHXZ00jvHnkyU/ndXnr9RMElXdQXUAGYrPpf4F8jO";
|
|
|
|
my $crc = binhex_crc($data);
|
|
is($crc, 35360);
|
|
|
|
done_testing(); |