Module: Net::SSH::Transport::Kex

Defined in:
lib/net/ssh/transport/kex.rb,
lib/net/ssh/transport/kex/abstract.rb,
lib/net/ssh/transport/kex/abstract5656.rb,
lib/net/ssh/transport/kex/curve25519_sha256.rb,
lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb,
lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb,
lib/net/ssh/transport/kex/ecdh_sha2_nistp521.rb,
lib/net/ssh/transport/kex/curve25519_sha256_loader.rb,
lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb,
lib/net/ssh/transport/kex/diffie_hellman_group14_sha1.rb,
lib/net/ssh/transport/kex/diffie_hellman_group14_sha256.rb,
lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb,
lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha256.rb

Defined Under Namespace

Modules: Curve25519Sha256Loader Classes: Abstract, Abstract5656, Curve25519Sha256, DiffieHellmanGroup14SHA1, DiffieHellmanGroup14SHA256, DiffieHellmanGroup1SHA1, DiffieHellmanGroupExchangeSHA1, DiffieHellmanGroupExchangeSHA256, EcdhSHA2NistP256, EcdhSHA2NistP384, EcdhSHA2NistP521

Constant Summary collapse

MAP =

Maps the supported key-exchange algorithms as named by the SSH protocol to their corresponding implementors.

{
  'diffie-hellman-group1-sha1' => DiffieHellmanGroup1SHA1,
  'diffie-hellman-group14-sha1' => DiffieHellmanGroup14SHA1,
  'diffie-hellman-group14-sha256' => DiffieHellmanGroup14SHA256,
  'diffie-hellman-group-exchange-sha1' => DiffieHellmanGroupExchangeSHA1,
  'diffie-hellman-group-exchange-sha256' => DiffieHellmanGroupExchangeSHA256,
  'ecdh-sha2-nistp256' => EcdhSHA2NistP256,
  'ecdh-sha2-nistp384' => EcdhSHA2NistP384,
  'ecdh-sha2-nistp521' => EcdhSHA2NistP521
}