openssl/perl/tt.pl
1998-12-21 10:56:39 +00:00

16 lines
185 B
Perl

#!/usr/local/bin/perl
use ExtUtils::testlib;
use SSLeay;
for ($i=1; $i<1000; $i++)
{
$a.=$i%10;
$y=SSLeay::BN::dec2bn($a);
$z=SSLeay::BN::bn2dec($y);
print "$a\n$y\n$z\n";
}