This is driving me crazy, im trying to do some MD5 calculation based on the fritzbox SPEC for logging in. Basically you have to convert a challenge and the password into UTF-16LE and then hash it by md5, then concat challenge-md5(uft-16le(challenge-password))
To do so i'm using iconv and md5 from mac OSX in a script
echo -n "challenge-password1234" | iconv -f ISO8859-1 -t UTF-16LE | md5
Which outputs to 2f42ad272c7aec4c94f0d9525080e6de
Doing the exact thing by just pasting it in the shell outputs to 1722e126192656712a1d352e550f1317
The latter one is correct (accepted by fritzbox) the first one is wrong.
Calling the script with bash script.sh
results in the proper hash, calling it with sh script.sh
results in the wrong hash, which leads to the new question: How come the output is any different between sh and bash?
Different versions of
echo
behave in very different ways. Some take command options (like-n
) that modify their behavior (including-n
suppressing the trailing linefeed), and some don't. Some interpret escape sequences in the string itself (including\c
at the end of the string suppressing the trailing linefeed)... and some don't. Some do both. It appears the version ofecho
(/bin/echo) on your system doesn't take options, and therefore treats-n
as a string to be printed. If you're using bash, its builtin version overrides /bin/echo, and does interpret flags.Basically,
echo
is a mess of inconsistency and portability traps. So don't use it, useprintf
instead. It's a little more complicated because you have to specify a format string, then the actual stuff you want printed, but it can save a ton of headaches.And by the way, here's what the
echo
command was actually printing: