This file is indexed.

/usr/lib/ruby/vendor_ruby/net/ssh/transport/kex/ecdh_sha2_nistp384.rb is in ruby-net-ssh 1:3.0.1-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
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