jmking has asked for the wisdom of the Perl Monks concerning the following question:
The only way I've been able to get this to work is to store the private key in a file and have Crypt::RSA read it back in like this:my $private_key = $sth->fetchrow(); #Stored as a string #I need to put $private_key in a format readable by the function below my $plaintext = $rsa->decrypt ( Cyphertext => $cyphertext, Key => $private_key, Armour => 1, ) || die $rsa->errstr();
But obviously writing a private key to a file is not a good idea, so I've also tried using IO::Scalar and IO::String to see if I could give the string a filehandle, with no luck. Any help would be appreciated.$private_key = new Crypt::RSA::Key::Private ( Filename => 'private_key_file' );
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Private keys in Crypt::RSA
by traveler (Parson) on Mar 07, 2007 at 20:45 UTC | |
by jmking (Initiate) on Mar 07, 2007 at 21:44 UTC | |
by traveler (Parson) on Mar 07, 2007 at 22:12 UTC | |
by dchoksi (Initiate) on Jun 26, 2007 at 15:08 UTC | |
by headcode (Initiate) on Oct 15, 2013 at 22:46 UTC | |
by jmking (Initiate) on Mar 07, 2007 at 22:10 UTC |