Skip Menu |

This queue is for tickets about the Crypt-RSA CPAN distribution.

Report information
The Basics
Id: 61392
Status: new
Priority: 0/
Queue: Crypt-RSA

People
Owner: Nobody in particular
Requestors: WolfSage [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Small bug in Crypt::RSA::Key::Private::check() if ($self->p && $self->q) { return $self->error ("n is not a number.") if $self->n =~ /\D/; return $self->error ("p is not a number.") if $self->p =~ /\D/; --> return $self->error ("p is not a number.") if $self->p =~ /\D/; Here we should be checking that $self->q =~ /\D/;