Sha256: b9644e7b2dd257e3bcce81116279d68bee4abac9b11a24f0541033b355af73f2
Contents?: true
Size: 372 Bytes
Versions: 123
Compression:
Stored size: 372 Bytes
Contents
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
123 entries across 110 versions & 13 rubygems
Version | Path |
---|---|
net-ssh-2.5.2 | lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb |
net-ssh-2.5.1 | lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb |
net-ssh-2.5.0 | lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb |