The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:Net::SSH::Perl"

Net::SSH::Perl - Perl client Interface to SSH River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl* is an all-Perl module implementing an SSH (Secure Shell) client. It is compatible with both the SSH-1 and SSH-2 protocols. *Net::SSH::Perl* enables you to simply and securely execute commands on remote machines, and receive the STDOU...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Key - Public or private key abstraction River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Key* implements an abstract base class interface to key objects (either DSA, RSA, ECDSA, or Ed25519 keys, currently). The underlying implementation for RSA, DSA, an ECDSA keys is the CryptX module. The Ed25519 implementation uses bun...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Kex - SSH2 Key Exchange River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Kex* implements base functionality for SSH2 key exchange. The basic idea is this: Kex itself initializes the client algorithm proposal, sends it to the server, then waits for the server's proposal. From these proposals Kex chooses th...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Auth - Base authentication class, plus utility methods River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Auth* provides a base class for each of the authentication method classes. In addition, it defines a set of utility methods that can be called either as functions or object methods....

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Comp - Compression/Decompression base class River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Comp* is a base class for compression/decompression classes. Currently the only such class is the Zlib implementation (using *Compress::Zlib*), which is the class *Net::SSH::Perl::Comp::Zlib*. Each compression object generally has it...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::SSH1 - SSH1 implementation River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::SSH1* implements the SSH1 protocol. It is a subclass of *Net::SSH::Perl*, and implements the interface described in the documentation for that module. In fact, your usage of this module should be completely transparent; simply specif...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Util - Shared utility functions River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Util* contains a variety of exportable utility functions used by the various *Net::SSH::Perl* modules. These range from hostfile routines, to RSA encryption routines, etc. None of the routines are actually stored in the *Util* module...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::SSH2 - SSH2 implementation River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::SSH2* implements the SSH2 protocol. It is a subclass of *Net::SSH::Perl*, and implements the interface described in the documentation for that module. In fact, your usage of this module should be completely transparent; simply specif...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Proxy - Use TCP proxy to connect to a host via SSH River stage one • 9 direct dependents • 9 total dependents

This class extends "Net::SSH::Perl" to allow connections through a SOCKS proxy....

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Agent - Client for agent authentication River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Agent* provides a client for agent-based publickey authentication. The idea behind agent authentication is that an auth daemon is started as the parent of all of your other processes (eg. as the parent of your shell process); all oth...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Buffer - Low-level read/write buffer class River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Buffer* implements the low-level binary buffer needed by the *Net::SSH::Perl* suite. Specifically, a *Net::SSH::Perl::Buffer* object is what makes up the data segment of a packet transferred between server and client (a *Net::SSH::Pe...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Config - Load and manage SSH configuration River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Config* manages configuration data for *Net::SSH::Perl*. It merges options handed to it at object construction with options read from configuration files. Just as in the actual ssh program, the first obtained value of a configuration...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Cipher - Base cipher class, plus utility methods River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Cipher* provides a base class for each of the encryption cipher classes. In addition, it defines a set of utility methods that can be called either as functions or object methods....

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Packet - Packet layer of SSH protocol River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Packet* implements the packet-layer piece of the SSH protocol. Messages between server and client are sent as binary data packets, which are encrypted (once the two sides have agreed on the encryption cipher, that is). Packets are ma...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::AuthMgr - Authentication manager/context for SSH-2 River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::AuthMgr* manages authentication methods and auth context for the SSH-2 authentication process. At its heart is a dispatch mechanism that waits for incoming packets and responds as necessary, based on a handler table that maps packet ...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Channel - SSH2 channel object River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Channel* implements a channel object compatible with the SSH2 channel mechanism....

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Mac - MAC support for SSH2 River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Mac* (and its subclasses) provides MAC support for the SSH2 implementation in *Net::SSH::Perl*. In the SSH2 protocol, each packet sent between client and server (after the key exchange and algorithm negotiation phase) contains a MAC ...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Constants - Exportable constants River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Constants* provides a list of common and useful constants for use in communicating with an sshd server, etc. None of the constants are exported by default; you have to explicitly ask for them. Some of the constants are grouped into b...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::ChannelMgr - Manages a list of open channels River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::ChannelMgr* manages the creation and maintenance of a list of open channels for the SSH2 protocol....

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC

Net::SSH::Perl::Kex::DH - Diffie-Hellman Group Agnostic Key Exchange River stage one • 9 direct dependents • 9 total dependents

*Net::SSH::Perl::Kex::DH* implements Diffie-Hellman Group Agnostic Exchange for *Net::SSH::Perl*. It is a subclass of *Net::SSH::Perl::Kex*. Key Exchange uses the Diffie-Hellman key exchange algorithm to produce a shared secret key between client and...

BDFOY/Net-SSH-Perl-2.142 - 07 Aug 2023 18:38:24 UTC
161 results (0.163 seconds)