-
-
24 Aug 2017 05:51:41 UTC
- Distribution: Net-SSH-Perl
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Issues (62)
- Testers (2196 / 0 / 0)
- Kwalitee
Bus factor: 2- 47.96% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (250.94KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Crypt::Curve25519
- Crypt::IDEA
- CryptX
- IO::Socket
- Math::GMP
- Scalar::Util
- String::CRC32
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Net::SSH::Perl::Kex::DH - Diffie-Hellman Group Agnostic Key Exchange
SYNOPSIS
# This class should not be used directly, but rather as a base for DH1, # DH14SHA1, DH16SHA512, etc use Net::SSH::Perl::Kex::DH; use base qw( Net::SSH::Perl::Kex::DH ); # Simply implement _dh_new_group and return the Crypt::DH group sub _dh_new_group { my $kex = shift; ... $dh; }
DESCRIPTION
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 server, without ever sending the shared secret over the insecure network. All that is sent are the client and server public keys.
AUTHOR & COPYRIGHTS
Please see the Net::SSH::Perl manpage for author, copyright, and license information.
Module Install Instructions
To install Net::SSH::Perl, copy and paste the appropriate command in to your terminal.
cpanm Net::SSH::Perl
perl -MCPAN -e shell install Net::SSH::Perl
For more information on module installation, please visit the detailed CPAN module installation guide.