X7ROOT File Manager
Current Path:
/opt/alt/ruby25/lib64/ruby/2.5.0/openssl
opt
/
alt
/
ruby25
/
lib64
/
ruby
/
2.5.0
/
openssl
/
ðŸ“
..
📄
bn.rb
(708 B)
📄
buffering.rb
(9.88 KB)
📄
cipher.rb
(1.7 KB)
📄
config.rb
(11.98 KB)
📄
digest.rb
(1.71 KB)
📄
pkcs5.rb
(614 B)
📄
pkey.rb
(663 B)
📄
ssl.rb
(16.06 KB)
📄
x509.rb
(5.82 KB)
Editing: pkcs5.rb
# frozen_string_literal: false #-- # 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
Upload File
Create Folder