tags:

views:

282

answers:

1

Hi all, i would like to know padding process in md5 algorithm detail.

+1  A: 

The MD5 algorithm (including padding) is described in RFC 1321, section 3.

Do you need more detail on implementation, though? I noticed your question is tagged 'java' but you didn't ask about anything Java-specific...

Jeff
The wikipedia article about cryptographic padding has an example: http://en.wikipedia.org/wiki/Padding_%28cryptography%29#Bit_padding
Keith Randall