2019-06-25 21:40:58 +02:00
|
|
|
require "../src/cox"
|
|
|
|
|
|
|
|
if ARGV.empty?
|
|
|
|
puts "Help select Pwhash ops/mem limits for your application."
|
|
|
|
puts "Usage: #{PROGRAM_NAME} time_min [time_max] [mem_max]"
|
|
|
|
puts "\ttime is in seconds"
|
2019-06-27 17:03:33 +02:00
|
|
|
puts "\tmem is in bytes"
|
2019-06-25 21:40:58 +02:00
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
|
|
|
|
time_min = ARGV.shift?.try &.to_f || 0.1
|
|
|
|
time_limit = if t = ARGV.shift?
|
|
|
|
t.to_f
|
|
|
|
else
|
|
|
|
time_min * 4
|
|
|
|
end
|
2019-06-27 17:03:33 +02:00
|
|
|
mem_limit = (ARGV.shift?.try &.to_i || (Cox::Pwhash::MEMLIMIT_MAX)).to_u64
|
2019-06-25 21:40:58 +02:00
|
|
|
pwhash = Cox::Pwhash.new
|
|
|
|
pass = "1234"
|
|
|
|
|
|
|
|
pwhash.memlimit = Cox::Pwhash::MEMLIMIT_MIN
|
|
|
|
loop do
|
|
|
|
pwhash.opslimit = Cox::Pwhash::OPSLIMIT_MIN
|
|
|
|
|
|
|
|
loop do
|
|
|
|
# p pwhash
|
2019-06-27 17:03:33 +02:00
|
|
|
t = Time.measure { pwhash.store pass }.to_f
|
2019-06-25 21:40:58 +02:00
|
|
|
s = String.build do |sb|
|
|
|
|
sb << "mem_limit "
|
2019-06-27 17:03:33 +02:00
|
|
|
sb << "%7d" % (pwhash.memlimit / 1024)
|
2019-06-25 21:40:58 +02:00
|
|
|
sb << "K ops_limit "
|
|
|
|
sb << "%7d" % pwhash.opslimit
|
|
|
|
sb << " "
|
|
|
|
sb << "%8.4fs" % t
|
|
|
|
end
|
|
|
|
puts s if t >= time_min
|
|
|
|
|
|
|
|
break if t >= time_limit
|
|
|
|
pwhash.opslimit *= 2
|
|
|
|
end
|
|
|
|
puts ""
|
|
|
|
|
|
|
|
break if pwhash.memlimit >= mem_limit
|
2019-06-27 17:03:33 +02:00
|
|
|
break if pwhash.opslimit == Cox::Pwhash::OPSLIMIT_MIN # Couldn't get past 1 iteration before going over time.
|
2019-06-25 21:40:58 +02:00
|
|
|
pwhash.memlimit *= 2
|
|
|
|
end
|
|
|
|
|
|
|
|
# TODO: table format
|