mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 03:18:23 +00:00
FIX: Digest::Digest deprecation
This commit is contained in:
parent
26b7bf388e
commit
a0d9821b37
@ -15,7 +15,7 @@ class Pbkdf2
|
||||
|
||||
def self.hash_password(password, salt, iterations, algorithm = "sha256")
|
||||
|
||||
h = OpenSSL::Digest::Digest.new(algorithm)
|
||||
h = OpenSSL::Digest.new(algorithm)
|
||||
|
||||
u = ret = prf(h, password, salt + [1].pack("N"))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user