in reply to Re: Perl Crypt::RSA problems
in thread Perl Crypt::RSA problems
#!/usr/bin/perl use strict; use Crypt::RSA; print "RSA tester\n"; my $infoToSign = "blah"; my $privateKey = 5; my $rsa = new Crypt::RSA; my $signatureValue = $rsa->sign( Message => $infoToSign, Key => $privateKey,);
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Perl Crypt::RSA problems
by Anonymous Monk on Oct 22, 2009 at 09:01 UTC |