I have a question related to some old hashes like MD5 and SHA-1. Both of them are not very safe for sure, but is there any way to increase its output length? The output length of the MD5 is 32
hex digits or 16 bytes
and I want to extend it to 18 bytes
(for example).
Is it possible to abuse the standard algorithm this way? Are there any attacks for it? Some kind of value overflow?
I am Reverse Engineering one file and this could be very handy for understanding its workflow. The file itself uses CryptCreateHash
function in C++ for hashing (if it is useful information)
Thank you.