Unit-3 2
Unit-3 2
• This section is concerned with the types of functions that may be used to pro- duce an authenticator. These may be grouped into three
classes.
• Hash function: A function that maps a message of any length into a fixed-length hash value, which serves as the authenticator
• Message encryption: The ciphertext of the entire message serves as its authenticator
• Message authentication code (MAC): A function of the message and a secret key that produces a fixed-length value that serves
as the authenticator
• Hash functions, and how they may serve for message authentication, are discussed. The remainder of this section briefly examines the
remaining two topics. The remainder of the chapter elaborates on the topic of MACs.
• Cryptographic Hash Function
Hash functions are extremely useful and appear in almost all
information security applications.
A hash function is a mathematical function that converts a numerical
input value into another compressed numerical value. The input to the
hash function is of arbitrary length but output is always of fixed length.
Values returned by a hash function are called message digest or
simply hash values. The following picture illustrated hash function −
• Cryptographic Hash Function
• Cryptographic Hash Function
Features of Hash Functions
The typical features of hash functions are −
Fixed Length Output (Hash Value)
• Hash function coverts data of arbitrary length to a fixed length. This process is
often referred to as hashing the data.
• In general, the hash is much smaller than the input data, hence hash functions
are sometimes called compression functions.
• Since a hash is a smaller representation of a larger data, it is also referred to as
a digest.
• Hash function with n-bit output is referred to as an n-bit hash function.
Popular hash functions generate values between 160 and 512 bits.
• Cryptographic Hash Function
Efficiency of Operation
Generally for any hash function h with input x, computation of h(x) is a fast operation.
Computationally hash functions are much faster than a symmetric encryption.
Properties of Hash Functions
In order to be an effective cryptographic tool, the hash function is desired to
possess following properties −
Pre-Image Resistance
• This property means that it should be computationally hard to reverse a hash
function.
• In other words, if a hash function h produced a hash value z, then it should be a
difficult process to find any input value x that hashes to z.
• This property protects against an attacker who only has a hash value and is trying
to find the input.
• Cryptographic Hash Function
Second Pre-Image Resistance
• This property means given an input and its hash, it should be hard to find a
different input with the same hash.
• In other words, if a hash function h for an input x produces hash value h(x),
then it should be difficult to find any other input value y such that h(y) = h(x).
• This property of hash function protects against an attacker who has an input
value and its hash, and wants to substitute different value as legitimate value
in place of original input value.
• Cryptographic Hash Function
Collision Resistance
• This property means it should be hard to find two different inputs of any length
that result in the same hash. This property is also referred to as collision free hash
function.
• In other words, for a hash function h, it is hard to find any two different inputs x
and y such that h(x) = h(y).
• Since, hash function is compressing function with fixed hash length, it is impossible
for a hash function not to have collisions. This property of collision free only
confirms that these collisions should be hard to find.
• This property makes it very difficult for an attacker to find two input values with
the same hash.
• Also, if a hash function is collision-resistant then it is second pre-image resistant.
• Cryptographic Hash Function
Design of Hashing Algorithms
• At the heart of a hashing is a mathematical function that operates on
two fixed-size blocks of data to create a hash code. This hash function
forms the part of the hashing algorithm.
• The size of each data block varies depending on the algorithm. Typically
the block sizes are from 128 bits to 512 bits. The following illustration
demonstrates hash function −
• Cryptographic Hash Function
• Cryptographic Hash Function
Hashing algorithm involves rounds of above hash function like a block cipher. Each round
takes an input of a fixed size, typically a combination of the most recent message block
and the output of the last round.
This process is repeated for as many rounds as are required to hash the entire message.
Schematic of hashing algorithm is depicted in the following illustration −
Since, the hash value of first message block becomes an input to the second hash
operation, output of which alters the result of the third operation, and so on. This effect,
known as an avalanche effect of hashing.
Avalanche effect results in substantially different hash values for two messages that differ
by even a single bit of data.
• Cryptographic Hash Function
Popular Hash Functions
Let us briefly see some popular hash functions −
Message Digest (MD)
• MD5 wasa most popular and widely used hash function for quite some years.
• The MD family comprises of hash functions MD2, MD4, MD5 and MD6. It was
adopted as Internet Standard RFC 1321. It is a 128-bit hash function.
• MD5 digests have been widely used in the software world to provide assurance
about the integrity of the transferred file. For example, file servers often
provide a pre-computed MD5 checksum for the files, so that a user can
compare the checksum of the downloaded file to it.
• In 2004, collisions were found in MD5. An analytical attack was reported to be
successful only in an hour by using a computer cluster. This collision attack
resulted in compromised MD5 and hence it is no longer recommended for use.
• Cryptographic Hash Function
Secure Hash Function (SHA)
• Family of SHA comprise of four SHA algorithms; SHA-0, SHA-1, SHA-2, and SHA-
3. Though from same family, there are structurally different.
• The original version is SHA-0, a 160-bit hash function, was published by the
National Institute of Standards and Technology (NIST) in 1993. It had few
weaknesses and did not become very popular. Later in 1995, SHA-1 was
designed to correct alleged weaknesses of SHA-0.
• SHA-1 is the most widely used of the existing SHA hash functions. It is
employed in several widely used applications and protocols including Secure
Socket Layer (SSL) security.
• In 2005, a method was found for uncovering collisions for SHA-1 within
practical time frame making long-term employability of SHA-1 doubtful.
• SHA-2 family has four further SHA variants, SHA-224, SHA-256, SHA-384, and
SHA-512 depending up on number of bits in their hash value. No successful
attacks have yet been reported on SHA-2 hash function.
• Cryptographic Hash Function
• Though SHA-2 is a strong hash function. Though significantly different,
its basic design is still follows design of SHA-1. Hence, NIST called for new
competitive hash function designs.
• In October 2012, the NIST chose the Keccak algorithm as the new SHA-3
standard. Keccak offers many benefits, such as efficient performance and
good resistance for attacks.
• Cryptographic Hash Function
Whirlpool