I thought that when salt is used, MD5 is computed from concatenation string + salt. So the word 'aaa' and salt 'aa' should be the same like 'aaaa' with salt 'a' or 'aaaaa' without salt.
But this is what I got...
md5pass aaa aa
$1$aa$EeTKacbSboHIR0fSp2UVf0
md5pass aaaa a
$1$a$M2jh3iKJcBEuJdTGjNcsh0
Could you please explain why checksums are different?
Thank you,
Martin
md5passworks – Ed Heal Sep 9 '11 at 13:49md5passis a linux tool examplenow.com/md5pass/man1 – Martin Sep 12 '11 at 6:45md5pass aaaaa aandmd5pass aaa aa, results are also different so it seems it is not just md5(data + salt + salt) :-( How can you compare checksums if you don't know the algorithm? – Martin Sep 12 '11 at 6:55