Sha256: 2ea75529013eaeec8770cdb4d2d3f0e02755b8397644476a15241bd6befd0225
Contents?: true
Size: 502 Bytes
Versions: 45
Compression:
Stored size: 502 Bytes
Contents
require 'net/ssh/transport/kex/ecdh_sha2_nistp256' module Net module SSH module Transport module Kex # A key-exchange service implementing the "ecdh-sha2-nistp256" # key-exchange algorithm. (defined in RFC 5656) class EcdhSHA2NistP384 < EcdhSHA2NistP256 def digester OpenSSL::Digest::SHA384 end def curve_name OpenSSL::PKey::EC::CurveNameAlias['nistp384'] end end end end end end
Version data entries
45 entries across 44 versions & 7 rubygems