I am quite confused as to why I am seeing different results for md5 hashing in PHP and in OpenSSL.
Here is the code that I am running:
php -r "echo md5('abc');"
Results in: 900150983cd24fb0d6963f7d28e17f72
While this:
echo abc | openssl md5
Results in: 0bee89b07a248e27c83fc3d5951213c1
Why?
There is only one way to compute MD5.
A blind guess is that the second one also includes a newline inside the string being hashed.
Yeh, verified it. That's it.
As everyone noted, the problem is that echo prints an extra newline.
However, the solution proposed (echo -n
) is not completely correct. According to the POSIX standard, "Implementations shall not support any options." You'll make the world a bit better if you don't use it.
Use
printf %s abc | openssl md5
or simply
printf abc | openssl md5
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With