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.

I am currently trying to use OpenSSL to encrypt and decrypt a file within a program which I am writing. The part of the program which I am using to encrypt is:

my $publickey = "public.pem";
my $privatekey = "private.pem";
my $inputtext = "plaintext.txt";
my $outputtext = "encryptiontext.txt";

openssl rsautl -encrypt -pubin -inkey $publickey -in $inputtext -out $outputtext

my $output= `$encryptiontext`;

open (outputtest, '>>outputtest.txt') or die "$!";

my $a = "$compID, $test";

print outputtest "$a\n";

close(outputtest);

Even when using the straight forward CLI

openssl rsautl -encrypt -pubin -inkey public.pem -in plaintext.txt -out encyrptiontext.txt

and for the decrypting I am using:

openssl rsautl -decrypt -inkey private.pem -in encyrptiontext.txt

The keys have been generated from the same file, though when I try and decrypt a single line I receive this error:

8952:error:0407106B:rsa routines:RSA_padding_check_PKCS1_type_2:block type is not 02:.\crypto\rsa\rs
a_pk1.c:190:
8952:error:04065072:rsa routines:RSA_EAY_PRIVATE_DECRYPT:padding check failed:.\crypto\rsa\rsa_eay.c
:592:

I am not sure why I am getting this as they are using the default settings and the keys have been generated from the same generator.

share|improve this question

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.