SILENT KILLERPanel

Current Path: > > opt > alt > ruby31 > > share > ruby


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/alt/ruby31//share/ruby

NameTypeSizeLast ModifiedActions
benchmark Directory - -
bigdecimal Directory - -
cgi Directory - -
csv Directory - -
did_you_mean Directory - -
digest Directory - -
drb Directory - -
erb Directory - -
error_highlight Directory - -
fiddle Directory - -
forwardable Directory - -
io Directory - -
json Directory - -
logger Directory - -
net Directory - -
objspace Directory - -
open3 Directory - -
openssl Directory - -
optparse Directory - -
psych Directory - -
racc Directory - -
random Directory - -
reline Directory - -
rinda Directory - -
ripper Directory - -
set Directory - -
syslog Directory - -
unicode_normalize Directory - -
uri Directory - -
vendor_ruby Directory - -
yaml Directory - -
English.rb File 6258 bytes April 28 2025 17:36:08.
abbrev.rb File 3529 bytes April 28 2025 17:36:08.
base64.rb File 3435 bytes April 28 2025 17:36:07.
benchmark.rb File 18842 bytes April 28 2025 17:36:08.
bigdecimal.rb File 24 bytes April 28 2025 17:36:08.
cgi.rb File 10070 bytes April 28 2025 17:36:08.
coverage.rb File 368 bytes April 28 2025 17:36:08.
csv.rb File 94629 bytes April 28 2025 17:36:08.
date.rb File 1130 bytes April 28 2025 17:36:07.
delegate.rb File 11961 bytes April 28 2025 17:36:06.
did_you_mean.rb File 5440 bytes April 28 2025 17:36:06.
digest.rb File 3381 bytes April 28 2025 17:36:08.
drb.rb File 50 bytes April 28 2025 17:36:07.
erb.rb File 29425 bytes April 28 2025 17:36:07.
error_highlight.rb File 84 bytes April 28 2025 17:36:08.
expect.rb File 2217 bytes April 28 2025 17:36:06.
fiddle.rb File 2162 bytes April 28 2025 17:36:08.
fileutils.rb File 48886 bytes April 28 2025 17:36:06.
find.rb File 2556 bytes April 28 2025 17:36:08.
forwardable.rb File 9199 bytes April 28 2025 17:36:06.
getoptlong.rb File 15826 bytes April 28 2025 17:36:07.
ipaddr.rb File 21077 bytes April 28 2025 17:36:06.
json.rb File 19757 bytes April 28 2025 17:36:07.
kconv.rb File 5861 bytes April 28 2025 17:36:08.
logger.rb File 16935 bytes April 28 2025 17:36:08.
mkmf.rb File 90232 bytes April 28 2025 17:36:08.
monitor.rb File 6920 bytes April 28 2025 17:36:06.
mutex_m.rb File 2383 bytes April 28 2025 17:36:08.
objspace.rb File 2728 bytes April 28 2025 17:36:07.
observer.rb File 6532 bytes April 28 2025 17:36:08.
open-uri.rb File 25474 bytes April 28 2025 17:36:08.
open3.rb File 22640 bytes April 28 2025 17:36:07.
openssl.rb File 1052 bytes April 28 2025 17:36:07.
optionparser.rb File 59 bytes April 28 2025 17:36:08.
optparse.rb File 60227 bytes April 28 2025 17:36:06.
ostruct.rb File 14114 bytes April 28 2025 17:36:06.
pathname.rb File 16868 bytes April 28 2025 17:36:07.
pp.rb File 17094 bytes April 28 2025 17:36:07.
prettyprint.rb File 16281 bytes April 28 2025 17:36:07.
pstore.rb File 15084 bytes April 28 2025 17:36:08.
psych.rb File 25199 bytes April 28 2025 17:36:06.
racc.rb File 137 bytes April 28 2025 17:36:07.
readline.rb File 189 bytes April 28 2025 17:36:08.
reline.rb File 18093 bytes April 28 2025 17:36:07.
resolv-replace.rb File 1805 bytes April 28 2025 17:36:07.
resolv.rb File 75959 bytes April 28 2025 17:36:07.
ripper.rb File 2494 bytes April 28 2025 17:36:08.
securerandom.rb File 2112 bytes April 28 2025 17:36:06.
set.rb File 26038 bytes April 28 2025 17:36:08.
shellwords.rb File 7259 bytes April 28 2025 17:36:08.
singleton.rb File 4178 bytes April 28 2025 17:36:07.
socket.rb File 44702 bytes April 28 2025 17:36:07.
tempfile.rb File 12730 bytes April 28 2025 17:36:08.
time.rb File 24287 bytes April 28 2025 17:36:07.
timeout.rb File 4171 bytes April 28 2025 17:36:08.
tmpdir.rb File 4543 bytes April 28 2025 17:36:08.
tsort.rb File 14642 bytes April 28 2025 17:36:08.
un.rb File 11323 bytes April 28 2025 17:36:08.
uri.rb File 3131 bytes April 28 2025 17:36:07.
weakref.rb File 1493 bytes April 28 2025 17:36:07.
yaml.rb File 1841 bytes April 28 2025 17:36:07.

Reading File: //opt/alt/ruby31//share/ruby/digest.rb

# frozen_string_literal: false

if defined?(Digest) &&
    /\A(?:2\.|3\.0\.[0-2]\z)/.match?(RUBY_VERSION) &&
    caller_locations.any? { |l|
      %r{/(rubygems/gem_runner|bundler/cli)\.rb}.match?(l.path)
    }
  # Before Ruby 3.0.3/3.1.0, the gem and bundle commands used to load
  # the digest library before loading additionally installed gems, so
  # you will get constant redefinition warnings and unexpected
  # implementation overwriting if we proceed here.  Avoid that.
  return
end

require 'digest/version'
require 'digest/loader'

module Digest
  # A mutex for Digest().
  REQUIRE_MUTEX = Thread::Mutex.new

  def self.const_missing(name) # :nodoc:
    case name
    when :SHA256, :SHA384, :SHA512
      lib = 'digest/sha2'
    else
      lib = File.join('digest', name.to_s.downcase)
    end

    begin
      require lib
    rescue LoadError
      raise LoadError, "library not found for class Digest::#{name} -- #{lib}", caller(1)
    end
    unless Digest.const_defined?(name)
      raise NameError, "uninitialized constant Digest::#{name}", caller(1)
    end
    Digest.const_get(name)
  end

  class ::Digest::Class
    # Creates a digest object and reads a given file, _name_.
    # Optional arguments are passed to the constructor of the digest
    # class.
    #
    #   p Digest::SHA256.file("X11R6.8.2-src.tar.bz2").hexdigest
    #   # => "f02e3c85572dc9ad7cb77c2a638e3be24cc1b5bea9fdbb0b0299c9668475c534"
    def self.file(name, *args)
      new(*args).file(name)
    end

    # Returns the base64 encoded hash value of a given _string_.  The
    # return value is properly padded with '=' and contains no line
    # feeds.
    def self.base64digest(str, *args)
      [digest(str, *args)].pack('m0')
    end
  end

  module Instance
    # Updates the digest with the contents of a given file _name_ and
    # returns self.
    def file(name)
      File.open(name, "rb") {|f|
        buf = ""
        while f.read(16384, buf)
          update buf
        end
      }
      self
    end

    # If none is given, returns the resulting hash value of the digest
    # in a base64 encoded form, keeping the digest's state.
    #
    # If a +string+ is given, returns the hash value for the given
    # +string+ in a base64 encoded form, resetting the digest to the
    # initial state before and after the process.
    #
    # In either case, the return value is properly padded with '=' and
    # contains no line feeds.
    def base64digest(str = nil)
      [str ? digest(str) : digest].pack('m0')
    end

    # Returns the resulting hash value and resets the digest to the
    # initial state.
    def base64digest!
      [digest!].pack('m0')
    end
  end
end

# call-seq:
#   Digest(name) -> digest_subclass
#
# Returns a Digest subclass by +name+ in a thread-safe manner even
# when on-demand loading is involved.
#
#   require 'digest'
#
#   Digest("MD5")
#   # => Digest::MD5
#
#   Digest(:SHA256)
#   # => Digest::SHA256
#
#   Digest(:Foo)
#   # => LoadError: library not found for class Digest::Foo -- digest/foo
def Digest(name)
  const = name.to_sym
  Digest::REQUIRE_MUTEX.synchronize {
    # Ignore autoload's because it is void when we have #const_missing
    Digest.const_missing(const)
  }
rescue LoadError
  # Constants do not necessarily rely on digest/*.
  if Digest.const_defined?(const)
    Digest.const_get(const)
  else
    raise
  end
end

SILENT KILLER Tool