X7ROOT File Manager
Current Path:
/opt/alt/ruby27/share/gems/gems/openssl-2.1.4/lib/openssl
opt
/
alt
/
ruby27
/
share
/
gems
/
gems
/
openssl-2.1.4
/
lib
/
openssl
/
??
..
??
bn.rb
(708 B)
??
buffering.rb
(9.68 KB)
??
cipher.rb
(1.7 KB)
??
config.rb
(12.55 KB)
??
digest.rb
(1.71 KB)
??
pkcs5.rb
(614 B)
??
pkey.rb
(663 B)
??
ssl.rb
(15.98 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