| Net-SSH2 documentation | Contained in the Net-SSH2 distribution. |
Net::SSH2::PublicKey - SSH 2 public key object
A public key object is created by the Net::SSH2 public_key method.
Adds a new public key; attributes is a list of hashes with name, value,
and mandatory keys; mandatory defaults to false and value to empty.
Remove the given public key.
Returns a list of public keys in array context (count in scalar context);
each item is a hash with keys name, blob, and attr, with the latter
being a hash with name, value, and mandatory keys.
David B. Robins, <dbrobins@cpan.org>
Copyright (C) 2005, 2006 by David B. Robins; all rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.0 or, at your option, any later version of Perl 5 you may have available.
| Net-SSH2 documentation | Contained in the Net-SSH2 distribution. |
package Net::SSH2::PublicKey; use strict; use warnings; use Carp; # methods 1; __END__