This file is indexed.

/usr/lib/ruby/vendor_ruby/certificate_authority/signing_entity.rb is in ruby-certificate-authority 0.2.0~6dd483bf-1.

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
14
15
16
module CertificateAuthority
  module SigningEntity

    def self.included(mod)
      mod.class_eval do
        attr_accessor :signing_entity
      end
    end

    def signing_entity=(val)
      raise "invalid param" unless [true,false].include?(val)
      @signing_entity = val
    end

  end
end