I’m supposed to write a wrapper function to MD5 hashing that restricts the input and output size of MD5 to 20 bit. (all exceeding output bits are thrown away).
How can this be done?
I’m supposed to write a wrapper function to MD5 hashing that restricts the input
Share
value20Bits = value24Bits & 0xfffff;? or some other mask?