Sha256: ec88035139ae20861565fd525803fc5f9595ca842dac3e5c13c99d9873b93f38
Contents?: true
Size: 463 Bytes
Versions: 152
Compression:
Stored size: 463 Bytes
Contents
require 'net/ssh/transport/kex/diffie_hellman_group1_sha1' require 'net/ssh/transport/kex/diffie_hellman_group_exchange_sha1' module Net::SSH::Transport module Kex # Maps the supported key-exchange algorithms as named by the SSH protocol # to their corresponding implementors. MAP = { 'diffie-hellman-group-exchange-sha1' => DiffieHellmanGroupExchangeSHA1, 'diffie-hellman-group1-sha1' => DiffieHellmanGroup1SHA1 } end end
Version data entries
152 entries across 122 versions & 14 rubygems