-
Notifications
You must be signed in to change notification settings - Fork 349
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The output of the md5(), sha1() and sha256() generators is misleading #759
Comments
md5(), sha1() and sha256() generators is misleading
Seems to me that there is no need to use |
The functions return hexadecimal characters, thus the output from |
I don't see why. |
The |
Summary
The md5(), sha1() and sha256() generators are documented to return a random MD5, SHA-1 or SHA-256 hash respectively. This is technically true, but at the same time it's also misleading, because the functions are unable to leverage the full output space of the respective hashes the way they're written. They don't return a random hash, they return the hash of a random 32 bit integer which is something entirely different.
I'm skipping the remainder of the template, because the issue is evident by looking at the code:
Faker/src/Faker/Provider/Miscellaneous.php
Lines 245 to 273 in 57e1f99
Possible solution:
Replace the implementation by
bin2hex(random_bytes($bytes))
with$bytes
being16
,20
and32
to make use of the entire output space [1]. But even then it would be slightly misleading, because hexadecimal is just one possible encoding for an 128/160/256 bit integer. Returning raw bytes or base64 encoding would also be valid representations that are actually used in practice in the context of a cryptographic hash.[1] With PHP 8.2 use
Randomizer::getBytes()
.The text was updated successfully, but these errors were encountered: