Skip to content
Snippets Groups Projects
Verified Commit d909e01d authored by Alexander Olofsson's avatar Alexander Olofsson
Browse files

Retune password salt generation

Should be more secure, and avoid generating potentially confusing data
parent 51125257
No related branches found
No related tags found
No related merge requests found
Pipeline #142292 canceled
......@@ -37,10 +37,10 @@ module Orchestration
pw = PasswordCrypt.passw_crypt(pw.password, password_hash)
else
seed = [
passwordstate_facet.id, id, passwordstate_server.id,
passwordstate_facet.password_list_id, pw.password_id
pw.password_id, passwordstate_facet.password_list_id,
passwordstate_facet.id, id, passwordstate_server.id
].join ':'
seed = Base64.strict_encode64(Digest::SHA1.digest(seed)).tr('+', '.')
seed = Base64.strict_encode64(Digest::SHA1.digest(seed)).gsub(%r{[^a-zA-Z0-9./]}, '.')
puts "Encrypting #{pw.password} with #{seed} (#{password_hash})"
pw = pw.password.crypt("#{PasswordCrypt::ALGORITHMS[password_hash]}#{seed}")
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment