Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby32 /
share /
ruby /
openssl /
Delete
Unzip
Name
Size
Permission
Date
Action
bn.rb
707
B
-rw-r--r--
2026-04-07 15:43
buffering.rb
10.22
KB
-rw-r--r--
2026-04-07 15:43
cipher.rb
1.7
KB
-rw-r--r--
2026-04-07 15:43
digest.rb
1.63
KB
-rw-r--r--
2026-04-07 15:43
hmac.rb
2.5
KB
-rw-r--r--
2026-04-07 15:43
marshal.rb
568
B
-rw-r--r--
2026-04-07 15:43
pkcs5.rb
613
B
-rw-r--r--
2026-04-07 15:43
pkey.rb
14.76
KB
-rw-r--r--
2026-04-07 15:43
ssl.rb
17.45
KB
-rw-r--r--
2026-04-07 15:43
version.rb
70
B
-rw-r--r--
2026-04-07 15:43
x509.rb
11.6
KB
-rw-r--r--
2026-04-07 15:43
Save
Rename
# frozen_string_literal: true #-- # Ruby/OpenSSL Project # Copyright (C) 2017 Ruby/OpenSSL Project Authors #++ module OpenSSL module PKCS5 module_function # OpenSSL::PKCS5.pbkdf2_hmac has been renamed to OpenSSL::KDF.pbkdf2_hmac. # This method is provided for backwards compatibility. def pbkdf2_hmac(pass, salt, iter, keylen, digest) OpenSSL::KDF.pbkdf2_hmac(pass, salt: salt, iterations: iter, length: keylen, hash: digest) end def pbkdf2_hmac_sha1(pass, salt, iter, keylen) pbkdf2_hmac(pass, salt, iter, keylen, "sha1") end end end