NAME

Crypt::RSA::Key::Private -- RSA Private Key Management.

SYNOPSIS

$key = new Crypt::RSA::Private::Key (
            Identity => 'Lord Banquo <banquo@lochaber.com>',
            Password => 'The earth hath bubbles',
       );

$key->hide ();

$key->write  ( Filename => 'rsakeys/banquo.private'  );

$akey = new Crypt::RSA::Private::Key (
             Filename => 'rsakeys/banquo.private'
            );   

$akey->reveal ( Password => 'The earth hath bubbles' );

DESCRIPTION

[coming soon]

AUTHOR

Vipul Ved Prakash, <mail@vipul.net>

SEE ALSO

Crypt::RSA::Key(3), Crypt::RSA::Public(3)