Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
#! /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.

share|improve this question
What do you mean by "error occur in browser"? It appears that your lampp installation can't find Crypt::OpenSSL::Random. – mpe Dec 4 '12 at 11:58
Is the terminal environment the same as the browser's environment? That is to say, are you using perlbrew in the terminal? – titanofold Dec 4 '12 at 12:08
My mistake. could you give output of /usr/bin/perl -MDynaLoader -MCrypt::OpenSSL::RSA -E'say for @DynaLoader::dl_shared_objects;' instead? – ikegami Dec 4 '12 at 12:19
The output is root@vengatesh-Compaq-Presario-A900-Notebook-PC:/opt/lampp/htdocs# /usr/bin/perl -MDynaLoader -MCrypt::OpenSSL::RSA -E'say for @DynaLoader::dl_shared_objects;' /usr/local/lib/perl/5.10.1/auto/Crypt/OpenSSL/Bignum/Bignum.so /usr/local/lib/perl/5.10.1/auto/Crypt/OpenSSL/RSA/RSA.so – user1852579 Dec 5 '12 at 4:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.