HMACs and MACs are authentication codes and are often the backbone of JWT authentication systems. Let's take a look at how they work!
MACs are exactly what they sound like; small codes that allow receivers of messages to know who the sender was (authentication). A MAC code is calculated by using a message and a secret key as inputs. Anyone who has a copy of that secret key can then verify that that code and message were created by someone with the same key.
One way this is accomplished is by using a hash function, for instance, SHA-256. Simply put, a hash function takes an input and then returns an output, where:
Given this, a naive example of MAC generation by the sender could be:
macCode = sha256('thisIsASecretKey1234' + 'my message here')
Then the verification by the receiver would be:
macCode == sha256('thisIsASecretKey1234' + 'my message here')
Note that MACs don't necessarily use a hash function, but a hash can be used as a "signing" mechanism. For a further reading look at the MAC Wikipedia article.
An HMAC is a kind of MAC. All HMACs are MACs but not all MACs are HMACs. The main difference is that an HMAC uses two rounds of hashing instead of one (or none). Each round of hashing uses a section of the secret key. As a naive example:
sha256('thisIsASe' + sha256('cretKey1234' + 'my message here'))
Which is a simplified version of the function given in RFC-2104.
Why use HMAC? Why do we need to hash twice?
With many hash functions, it is relatively easy to change the message (without knowing the key) and obtain another valid MAC. We call this a length extension attack. No known extension attacks are known against the current HMAC specification.
To read further about HMACs take a look here.
If you've ever used JWTs for authentication schemes on a web app, then you know that JWTs are wonderful for keeping track of who is who. A JWT (when using HMAC as the signing scheme) is basically just an HMAC message where the message data is a JSON object.
The interesting thing about the JWT system is that the sender and the receiver of the JWT are typically the same entity, that is, the webserver. Look at the following example:
hmacCode = sha256('thisIsASe' + sha256('cretKey1234' + '{"email":"[email protected]"}'))
header.{"email":"[email protected]"}.hmacCode
PUT /users/profile_picture
Authentication: Bearer header.{"email":"[email protected]"}.hmacCode
{"new_picture": "http://linktopicture.com/mypic"}
Because this is a very basic example of how JWT's work, it skips over some implementation details. However, if you want to learn more about the specifics, take a look at the explanation on jwt.io.
If you feel that I missed anything important, or have any questions, feel free to contact me on twitter!
Previously published at https://qvault.io/2019/12/12/hmac-and-mac-explained-simply-building-secure-auth-with-jwts/