Difference between revisions of "One way hash"

From Hackepedia
Jump to navigationJump to search
 
Line 1: Line 1:
A [[One Way Hash]] is a mathematical way to create a (usually smaller) unique representation of a given set of data.  It's sometimes referred to as a "fingerprint". It's called "One Way" because while it's easy to create the hash value from the input data, it is, for all intents and purposes, impossible to reconstruct the original data from the hash value.  [[MD5]] is perhaps the most well-known [[One Way Hash]].  [[SHA]], the Secure Hashing Algorithm, is widely used today to replace [[MD5]].
+
A [[One way hash]] is a mathematical way to create a (usually smaller) unique representation of a given set of data.  It's sometimes referred to as a "fingerprint". It's called "One Way" because while it's easy to create the hash value from the input data, it is, for all intents and purposes, impossible to reconstruct the original data from the hash value.  [[MD5]] is perhaps the most well-known [[One way hash]].  [[SHA]], the Secure Hashing Algorithm, is widely used today to replace [[MD5]].

Revision as of 21:35, 9 October 2005

A One way hash is a mathematical way to create a (usually smaller) unique representation of a given set of data. It's sometimes referred to as a "fingerprint". It's called "One Way" because while it's easy to create the hash value from the input data, it is, for all intents and purposes, impossible to reconstruct the original data from the hash value. MD5 is perhaps the most well-known One way hash. SHA, the Secure Hashing Algorithm, is widely used today to replace MD5.