Hashed message authentication code

From Citizendium
Revision as of 00:33, 2 November 2008 by imported>Sandy Harris (new page, basic info)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A hashed message authentication code or HMAC is a cryptographic technique for providing data integrity protection.

HMACs use a cryptographic hash algorithm and a cryptographic key. The sender generates the HMAC from the message and the key; the receiver verifies using both.

If HMAC verification succeeds, the receiver knows not only that the message is unchanged since the hash was generated (which he would know with any hash algorithm), but also that whoever generated the HMAC knew the appropriate key. This prevents an attacker without the key from altering a message and generating a valid hash for the changed version. HMACs prevent man=in-the-middle attacks.

IPsec uses an HMAC for packet-level authentication.