GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::SSH::Perl::Kex::DH(3) User Contributed Perl Documentation Net::SSH::Perl::Kex::DH(3)

Net::SSH::Perl::Kex::DH - Diffie-Hellman Group Agnostic Key Exchange

    # 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;
    }

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.

Please see the Net::SSH::Perl manpage for author, copyright, and license information.
2017-08-24 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.