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.