Crypt::RSA::Key::Public -- RSA Public Key Management.


NAME

Crypt::RSA::Key::Public -- RSA Public Key Management.


SYNOPSIS

    $key = new Crypt::RSA::Key::Public; 
    $key->write ( Filename => 'rsakeys/banquo.public' );
    $akey = new Crypt::RSA::Key::Public (
                Filename => 'rsakeys/banquo.public' 
            );


DESCRIPTION

Crypt::RSA::Key::Public provides basic key management functionality for Crypt::RSA public keys. Following methods are available:

new()
The constructor. Reads the public key from a disk file when called with a Filename argument.

write()
Writes a public key to disk when called with a Filename argument.


AUTHOR

Vipul Ved Prakash, <mail@vipul.net>


SEE ALSO

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

 Crypt::RSA::Key::Public -- RSA Public Key Management.