| Crypt-RSA documentation | view source | Contained in the Crypt-RSA distribution. |
Crypt::RSA::Key::Public -- RSA Public Key Management.
$key = new Crypt::RSA::Key::Public;
$key->write ( Filename => 'rsakeys/banquo.public' );
$akey = new Crypt::RSA::Key::Public (
Filename => 'rsakeys/banquo.public'
);
Crypt::RSA::Key::Public provides basic key management functionality for Crypt::RSA public keys. Following methods are available:
The constructor. Reads the public key from a disk file when
called with a Filename argument.
Causes the key to be written to a disk file specified by the
Filename argument.
Causes the key to be read from a disk file specified by
Filename into the object.
Creates a Data::Dumper(3) serialization of the private key and returns the string representation.
Accepts a serialized key under the String parameter and
coverts it into the perl representation stored in the object.
check()Check the consistency of the key. Returns undef on failure.
Vipul Ved Prakash, <mail@vipul.net>
Crypt::RSA::Key(3), Crypt::RSA::Key::Private(3)
| Crypt-RSA documentation | view source | Contained in the Crypt-RSA distribution. |