gluon-core: convert site seed to lowercase

While we use the hexadecimal representation as a hash input for simplicity,
it should not be interpreted as case-sensitive.
This commit is contained in:
Matthias Schiffer 2017-06-27 23:28:23 +02:00
parent 0ceb25e3e7
commit ae593d8439
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ function site_seed_bytes(key, length)
-- cryptographic strength
while ret:len() < 2*length do
i = i + 1
v = hash.md5(v .. key .. site.site_seed .. i)
v = hash.md5(v .. key .. site.site_seed:lower() .. i)
ret = ret .. v
end