ksbehal has asked for the wisdom of the Perl Monks concerning the following question:
Need your help, can you please explain how to store the RSA private key in the database and how to recover it back as an RSA private object? This is a bit urgent, appreciate your timely help
It's a bit hard to give you concrete advice as you don't show any relevant code. The module Crypt::OpenSSL::RSA has methods for initializing public and private keys from strings, so you should be able to load the strings from the database using DBI and then use Crypt::OpenSSL::RSA to do the encryption.