#! /usr/bin/perl
#use strict;
use Crypt::OpenSSL::Random;
use Crypt::OpenSSL::RSA;
use Data::Dumper ;
my $rsa = Crypt::OpenSSL::RSA->generate_key(1024); # or
print "private key is:\n", $rsa->get_private_key_string();
print "public key (in PKCS1 format) is:\n",
$rsa->get_public_key_string();
print "public key (in X509 format) is:\n",
$rsa->get_public_key_x509_string();
$rsa->use_md5_hash(); # use_sha1_hash is the default
$signature = $rsa->sign($plaintext);
if($rsa->verify($plaintext,$signature)) {
print "Signed correctly\n"; }
my $rsa = Crypt::OpenSSL::RSA->generate_key(2048); # or
my $rsa_priv = Crypt::OpenSSL::RSA->new_private_key($rsa->get_private_key_string() );
my $rsa_pub = Crypt::OpenSSL::RSA->new_public_key( $rsa->get_public_key_string() );
my $ciphertext = $rsa_pub->encrypt($plaintext) ;
print 'result'.$ciphertext;
The error that occurs when run by apache (newlines added for readability):
Can't locate loadable object for module Crypt::OpenSSL::Random in @INC (@INC contains:
/opt/lampp/lib/perl5/5.10.1/i686-linux
/opt/lampp/lib/perl5/5.10.1
/opt/lampp/lib/perl5/site_perl/5.10.1/i686-linux
/opt/lampp/lib/perl5/site_perl/5.10.1
.
/opt/lampp) at /opt/lampp/htdocs/cryptos1.pl line 3
Compilation failed in require at /opt/lampp/htdocs/cryptos1.pl line 3.
BEGIN failed--compilation aborted at /opt/lampp/htdocs/cryptos1.pl line 3. ,
From a shell, it displays the correct output. Where is the problem? What did I miss? I installed everything.
Crypt::OpenSSL::Random. – mpe Dec 4 '12 at 11:58/usr/bin/perl -MDynaLoader -MCrypt::OpenSSL::RSA -E'say for @DynaLoader::dl_shared_objects;'instead? – ikegami Dec 4 '12 at 12:19