I am trying to use Crypt::RSA to decrypt a message (I was given n, which I then factored into p and q, and I was also given e. I computed d. programmatically generate `d` from `p` and `q` (RSA)) but am having some difficulties. Every time I run the following code, I get Incomplete key.
It's such an unhelpful error message.
use Crypt::RSA;
my $rsa = new Crypt::RSA;
my $privkey = bless( {
'p' => 'NUMBER',
'q' => 'NUMBER',
'n' => 'NUMBER',
'Version' => '1.99',
'Identity' => '<email>' #put your email here?
}, 'Crypt::RSA::Key::Private' );
my $plaintext = $rsa->decrypt (
Cyphertext => "- -----BEGIN COMPRESSED RSA ENCRYPTED MESSAGE-----
Version: 1.99
Scheme: Crypt::RSA::ES::OAEP
block_message_here
- -----END COMPRESSED RSA ENCRYPTED MESSAGE-----",
Key => $privkey,
Armour => 1,
) or die $rsa->errstr();
print $plaintext;
n,p,qand still "Incomplete key." – tekknolagi Jan 16 '12 at 22:11return $self->error ("Incomplete key.") unless ($self->n && $self->d) || ($self->n && $self->p && $self->q);– GregS Jan 16 '12 at 22:14