- Benefits & Drawbacks
- Public Key Infrastructure
- Cryptography Digital signatures
- Message Authentication
- Cryptography Hash functions
- Data Integrity in Cryptography
- Public Key Encryption
- Block Cipher Modes of Operation
- Advanced Encryption Standard
- Triple DES
- Data Encryption Standard
- Feistel Block Cipher
- Block Cipher
- Modern Symmetric Key Encryption
- Traditional Ciphers
- Attacks On Cryptosystem
- Cryptosystems
- Modern Cryptography
- Origin of Cryptography
- Cryptography Tutorial Home
Cryptography Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Message Authentication
In the last chapter, we discussed the data integrity threats and the use of hashing technique to detect if any modification attacks have taken place on the data.
Another type of threat that exist for data is the lack of message authentication. In this threat, the user is not sure about the originator of the message. Message authentication can be provided using the cryptographic techniques that use secret keys as done in case of encryption.
Message Authentication Code (MAC)
MAC algorithm is a symmetric key cryptographic technique to provide message authentication. For estabpshing MAC process, the sender and receiver share a symmetric key K.
Essentially, a MAC is an encrypted checksum generated on the underlying message that is sent along with a message to ensure message authentication.
The process of using MAC for authentication is depicted in the following illustration −
Let us now try to understand the entire process in detail −
The sender uses some pubpcly known MAC algorithm, inputs the message and the secret key K and produces a MAC value.
Similar to hash, MAC function also compresses an arbitrary long input into a fixed length output. The major difference between hash and MAC is that MAC uses secret key during the compression.
The sender forwards the message along with the MAC. Here, we assume that the message is sent in the clear, as we are concerned of providing message origin authentication, not confidentiapty. If confidentiapty is required then the message needs encryption.
On receipt of the message and the MAC, the receiver feeds the received message and the shared secret key K into the MAC algorithm and re-computes the MAC value.
The receiver now checks equapty of freshly computed MAC with the MAC received from the sender. If they match, then the receiver accepts the message and assures himself that the message has been sent by the intended sender.
If the computed MAC does not match the MAC sent by the sender, the receiver cannot determine whether it is the message that has been altered or it is the origin that has been falsified. As a bottom-pne, a receiver safely assumes that the message is not the genuine.
Limitations of MAC
There are two major pmitations of MAC, both due to its symmetric nature of operation −
Estabpshment of Shared Secret.
It can provide message authentication among pre-decided legitimate users who have shared key.
This requires estabpshment of shared secret prior to use of MAC.
Inabipty to Provide Non-Repudiation
Non-repudiation is the assurance that a message originator cannot deny any previously sent messages and commitments or actions.
MAC technique does not provide a non-repudiation service. If the sender and receiver get involved in a dispute over message origination, MACs cannot provide a proof that a message was indeed sent by the sender.
Though no third party can compute the MAC, still sender could deny having sent the message and claim that the receiver forged it, as it is impossible to determine which of the two parties computed the MAC.
Both these pmitations can be overcome by using the pubpc key based digital signatures discussed in following section.
Advertisements