Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby30 /
share /
ruby /
openssl /
Delete
Unzip
Name
Size
Permission
Date
Action
bn.rb
707
B
-rw-r--r--
2024-06-26 14:24
buffering.rb
10.05
KB
-rw-r--r--
2024-06-26 14:24
cipher.rb
1.7
KB
-rw-r--r--
2024-06-26 14:24
config.rb
12.94
KB
-rw-r--r--
2024-06-26 14:24
digest.rb
1.63
KB
-rw-r--r--
2024-06-26 14:24
hmac.rb
1.69
KB
-rw-r--r--
2024-06-26 14:24
marshal.rb
568
B
-rw-r--r--
2024-06-26 14:24
pkcs5.rb
613
B
-rw-r--r--
2024-06-26 14:24
pkey.rb
14.11
KB
-rw-r--r--
2024-06-26 14:24
ssl.rb
17.38
KB
-rw-r--r--
2024-06-26 14:24
version.rb
70
B
-rw-r--r--
2024-06-26 14:24
x509.rb
10.63
KB
-rw-r--r--
2024-06-26 14:24
Save
Rename
# frozen_string_literal: true module OpenSSL class HMAC # Securely compare with another HMAC instance in constant time. def ==(other) return false unless HMAC === other return false unless self.digest.bytesize == other.digest.bytesize OpenSSL.fixed_length_secure_compare(self.digest, other.digest) end class << self # :call-seq: # HMAC.digest(digest, key, data) -> aString # # Returns the authentication code as a binary string. The _digest_ parameter # specifies the digest algorithm to use. This may be a String representing # the algorithm name or an instance of OpenSSL::Digest. # # === Example # key = 'key' # data = 'The quick brown fox jumps over the lazy dog' # # hmac = OpenSSL::HMAC.digest('SHA1', key, data) # #=> "\xDE|\x9B\x85\xB8\xB7\x8A\xA6\xBC\x8Az6\xF7\n\x90p\x1C\x9D\xB4\xD9" def digest(digest, key, data) hmac = new(key, digest) hmac << data hmac.digest end # :call-seq: # HMAC.hexdigest(digest, key, data) -> aString # # Returns the authentication code as a hex-encoded string. The _digest_ # parameter specifies the digest algorithm to use. This may be a String # representing the algorithm name or an instance of OpenSSL::Digest. # # === Example # key = 'key' # data = 'The quick brown fox jumps over the lazy dog' # # hmac = OpenSSL::HMAC.hexdigest('SHA1', key, data) # #=> "de7c9b85b8b78aa6bc8a7a36f70a90701c9db4d9" def hexdigest(digest, key, data) hmac = new(key, digest) hmac << data hmac.hexdigest end end end end