Created
October 5, 2016 18:14
-
-
Save pkarman/34c1d3edb0b2c000430fc39278378146 to your computer and use it in GitHub Desktop.
password hashing comparisons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'benchmark/ips' | |
require 'bcrypt' | |
require 'openssl' | |
require 'securerandom' | |
def sha512_digest(*tokens) | |
Digest::SHA512.hexdigest('--' << tokens.flatten.join('--') << '--') | |
end | |
Benchmark.ips do |x| | |
# Configure the number of seconds used during | |
# the warmup phase (default 2) and calculation phase (default 5) | |
x.time = 5 | |
x.warmup = 2 | |
pw = 'Awe3ome 1ong !great PASSw0rd' | |
salt = 'abcd1234XYZ' | |
pepper = SecureRandom.uuid | |
(10..14).each do |cost| | |
x.report("bcrypt #{cost} stretches") do | |
BCrypt::Password.create(pw, cost: cost).to_s | |
end | |
end | |
(10..14).each do |cost| | |
digest = SecureRandom.uuid | |
x.report("sha512 #{cost} stretches") do | |
cost.times { digest = sha512_digest(salt, digest, pw, pepper) } | |
end | |
end | |
digest = OpenSSL::Digest::SHA512.new | |
len = digest.digest_length | |
[50_000, 100_000, 200_000, 400_000, 800_000].each do |iterations| | |
x.report("pbkdf2 #{iterations}") do | |
::Digest::SHA512.hexdigest(OpenSSL::PKCS5.pbkdf2_hmac(pw, salt + pepper, iterations, len, digest)) | |
end | |
end | |
x.compare! | |
end |
Author
pkarman
commented
Oct 5, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment