Difference between revisions of "MD4 hash"

From AMule Project FAQ
Jump to: navigation, search
m
Line 6: Line 6:
 
Both [http://www.faqs.org/rfcs/rfc1320.html MD4] and it's successor [http://userpages.umbc.edu/~mabzug1/cs/md5/md5.html MD5] (which is an extension of [http://www.faqs.org/rfcs/rfc1320.html MD4]) are optimized for 32-bit machines, while it's predecessor [http://www.faqs.org/rfcs/rfc1319.html MD2] was optimized for 8-bit machines.
 
Both [http://www.faqs.org/rfcs/rfc1320.html MD4] and it's successor [http://userpages.umbc.edu/~mabzug1/cs/md5/md5.html MD5] (which is an extension of [http://www.faqs.org/rfcs/rfc1320.html MD4]) are optimized for 32-bit machines, while it's predecessor [http://www.faqs.org/rfcs/rfc1319.html MD2] was optimized for 8-bit machines.
  
[http://www.faqs.org/rfcs/rfc1320.html MD4] is known to be fast, but possibly not absolutely secure. On tho other hand, [http://userpages.umbc.edu/~mabzug1/cs/md5/md5.html MD5] is not as fast as the [http://www.faqs.org/rfcs/rfc1320.html MD4] algorithm, but offers much more assurance of data security.
+
[http://www.faqs.org/rfcs/rfc1320.html MD4] is known to be fast, but possibly not absolutely secure. On the other hand, [http://userpages.umbc.edu/~mabzug1/cs/md5/md5.html MD5] is not as fast as the [http://www.faqs.org/rfcs/rfc1320.html MD4] algorithm, but offers much more assurance of data security.
  
[[aMule]] incorporates the [http://www.faqs.org/rfcs/rfc1320.html MD4] algorithm through the [[libcrypto|Crypto++]] library.
+
[[aMule]] incorporates the [http://www.faqs.org/rfcs/rfc1320.html MD4] algorithm based on the [[libcrypto|Crypto++]]'s library sources (in some beta [[aMule]] v2 releases, it did actually use [[libcrypto|Crypto++]]).

Revision as of 02:05, 14 October 2004

An MD4 hash is a unique value given as a result of a mathematical expression following the MD4 algorithm which claims to esnure data integrity.
It provides a 128-bit message digest from the data input (the input may be of any length) that is claimed to be unique.

MD4 was developed by Professor Ronald L. Rivest of MIT and accepted by the RSA on October 1990 and then redisigned on April 1992.

Both MD4 and it's successor MD5 (which is an extension of MD4) are optimized for 32-bit machines, while it's predecessor MD2 was optimized for 8-bit machines.

MD4 is known to be fast, but possibly not absolutely secure. On the other hand, MD5 is not as fast as the MD4 algorithm, but offers much more assurance of data security.

aMule incorporates the MD4 algorithm based on the Crypto++'s library sources (in some beta aMule v2 releases, it did actually use Crypto++).