Cns- Notes Unit-4 PDF
Cns- Notes Unit-4 PDF
1. Message Integrity:
The cryptography systems that we have studied so far provide secrecy, or confidentiality, but not
integrity.
However, there are occasions where we may not even need secrecy but instead must have
integrity(Data will not changed).
Difference:
The two pairs (document / fingerprint) and (message / message digest) are similar, with some
differences.
The document and fingerprint are physically linked together. The messa ge and message digest
can be unlinked separately, and, most importantly, the message digest needs to be
safe from change.
Note: The message digests needs to be safe from change.
Checking Integrity:
Second Preimage Resistance: In this criterion, an adversary is provided with the value of
x and is asked to compute the value of x1 ≠ x, such that h(x) = h(x1).
If it difficult for the attacker to perform this computation we claim that the hash
function is second pre-image resistant.
Collision Resistance: Collision of a hash function is the event when two values x and
x1, such that x1 ≠ x hash to the same value, i.e., h(x) = h(x1).
Random Oracle Model:
2. Message Authentication:
➢ A message digest guarantees the integrity of a message. It guarantees that the
message has not been changed.
➢ A message digest does not authenticate the sender of the message.
➢ When Alice sends a message to Bob, Bob needs to know if the message
is coming from Alice.
➢ To provide message authentication, Alice needs to provide proof that it is Alice
sending the message and not a fraud.
➢ The digest created by a cryptographic hash function is normally called a
Modification Detection Code (MDC). This code can detect any
modifications in the message.
➢ What we need for message authentication is a Message Authentication Code
(MAC).
MAC Security
How can Eve forge a message without having the key?
1. If size of the key allows exhaustive search, Eve may try all possible
keys to digest the message.
2. Use preimageattack.
3. Given some pairs of messages and their MACs, Eve can
manipulate them to come up with a new message and its digest
Note: The security of a MAC depends on the security of the underlying hash algorithm.
Nested MAC:
✓ To improve MAC security, nested MACs were designed in which hashing is performed
twice.
▪ In 1st step, the key is concatenated with the message and is hashed to
create an intermediate digest.
▪ In 2nd step, the key is concatenated with the intermediate digest to create the final digest.
HMAC (Hashed MAC):
▪ HMAC algorithm stands for Hashed or Hash based Message Authentication Code
▪ it uses the Hashing concept twice, so great resistant to attacker
▪ HMAC consists of twin benefits of Hashing and MAC
✓ The working of HMAC starts with taking a message M containing blocks of length b
bits.
✓ An input signature is padded to the left of the message and the whole is given as
input to a hash function which gives us a intermediate HMAC.
✓ Intermediate HMAC again is appended to an output signature and the whole is applied
a hash function again, the result is our final HMAC of n bits
CMAC (Cipher based MAC)
• SHA-512
• Whirlpool
Merkle-Damgard Scheme
SHA – 512
• SHA-512 is family of Secure Hash Algorithm
• SHA-512 creates a 512 bit message digest .
• The original message divided into multiple blocks of size 1024bits.
• The Processing of each block involves 80 rounds
• Each block of size(1024bits) can be assumed as 16 words of size 64bits
• The maximum size of message is less than 2128. This means that if the length of a
message equal to or greater than 2128, it will not be processed by SHA-512
• SHA-512 based on Merkle-Damgard scheme.
STEPS:
The message is padded with 1000000…. To make the message multiples of 1024.
2. Append length of the message:
A block of 128 bits is appended to the message. Contains the length of the original message.
Before addition of the length of message , we need to pad as specified in the first step.
The size of padding bits is calculated
as: (|M|+|P|+128)=0 mod 1024
|P|=-|M|-128 mod 1024
Example: What is the number of padding bits if the length of the original message is 2590
Solution: |P|=-2590-128 mod 1024
=-2718 mod 1024 = -670 mod 1024
=(1024-670) mod 1024 = 354
The padding consists of one 1 followed by 353 0’s
Length Field and Padding:
Before the message digest can be created, SHA-512 requires the addition of a 128-bit length field (0-(2128-
1)to the message that defines the length of the message in bits.
Compression Function
The heart of the algorithm is a module that consists of 80 rounds; this module is labeled as F in Block
Diagram.
Each round t takes as input the 512-bit buffer value, abcdefgh, and updates the contents of the buffer.
Each round t makes use of a 64-bit value Wt, derived from the current 1024-bit block being
processed (Mi).
Each round t also makes use of an additive constant Kt (64-bit)
The output of the 80th round is added to the input to the first round (Hi-1) to produce Hi.
80-Word Input Sequence
Constants
…..
DIGITAL SIGNATURE
• A digital signature is a technique used to validate the authenticity and integrity of a
message.
• In the physical world, A person signs a document to show that it originated from him
or was approved by him. The signature is proof to recipient that the document
comes from the correct entity.
• Similarly, a digital signature is a technique that binds a person/entity to the
digital data. This binding can be independently verified by receiver as well as
any third party.
• Digital signature is a cryptographic value that is calculated from the data and a
secret key known only by the signer.
Inclusion
A conventional signature is included in the document; it is part of the document.
But when we sign a document digitally, we send the signature as a separate document.
Verification Method
For a conventional signature, when the recipient receives a document, he compares the signature on the
document with the signature on file.
For a digital signature, the recipient receives the message and the signature. The recipient needs to apply a
verification technique to the combination of the message and the signature to verify the authenticity.
Relationship
For a conventional signature, there is normally a one-to-many relationship between a signature and
documents. For a digital signature, there is a one-to-one relationship between a signature and a
message.
Duplicity
In conventional signature, a copy of the signed document can be distinguished from the original one on
Prepared by Ch Samsonu, Assoc.Professor, 14
file. In digital signature, there is no such distinction unless there is a factor of time on the document.
Figure shows the digital signature process. The sender uses a signing algorithm to sign the message. The
message and the signature are sent to the receiver. The receiver receives the message and the signature and
applies the verifying algorithm to the combination. If the result is true, the message is accepted; otherwise,
it is rejected.
The drawback of Asymmetric key cryptosystems that is “inefficient for long messages” .t In a digital
signature system can be overcome by “signing the digest of the message”.
SERVICES
Message Authentication
• A secure digital signature scheme, like a secure conventional signature can
provide message authentication
• Example, Bob can verify that the message is sent by Alice because Alice’s public key is used in
verification.
Message Integrity
The integrity of the message is preserved even if we sign the whole message because we cannot get the
same signature if the message is changed.
Nonrepudiation
Nonrepudiation can be provided using a trusted party.
Confidentiality
Attack Types
1. Key-Only Attack
In key-only attack, the public key of A is available to every one and C makes use of this fact and try to
recreate the signature of A and digitally sign the documents that A does not intend to do.
2. Known-Message Attack
In the known message attack, C has few previous messages and signatures of A. Now C tries to forge
the signature of A on to the documents that A does not intend to sign by using the brute force method by
analyzing the previous data to recreate the signature of A
3. Chosen-Message Attack
In this method C has the knowledge about A’s public key and obtains A’s signature on the messages and
replaces the original message with the message C wants A to sign with having A’s signature on them
unchanged.
Forgery Types
1. Existential Forgery
Adversary can create a pair (message, signature), such that the signature of the message is valid.
Adversary has no control on the messages whose signature is forged
2. Selective Forgery
Adversary is able to create valid signatures on a message
chosen by someone else, with a significant probability.
Adversary controls the messages whose signature is forged
The sender uses his own private key tosign the documemnet, the receivr uses the senders public key to
verify it
As a trivial example, suppose that Alice chooses p = 823 and q = 953, and calculates n = 784319. The
value of f(n) is 782544. Now she chooses e = 313 and calculates d = 160009. At this point key
generation is complete. Now imagine that Alice wants to send a message with the value of M = 19070 to
Bob. She uses her private exponent, 160009, to sign the message:
Alice sends the message and the signature to Bob. Bob receives the message and the signature. He
calculates
DSS Overview
KEY MANAGEMENT
SYMMETRIC-KEY DISTRIBUTION
• Symmetric-key cryptography is more efficient than asymmetric-key
cryptography for enciphering large messages.
• Symmetric-key cryptography, however, needs a shared secret key between two parties.
• Example: If Alice needs to exchange confidential messages with N people, she need N
different keys and if N people need to exchange with each other, they need N(N-1)
keys. If 1 million people need to communicate with each other , they need more than
trillions of keys.
• This proble normally referred as N2 problem, because the number of required
keys for N entitesis N2
• We also has a problem of the distribution of keys through the internet which is unsecure.
A practical solution for the above problem is the use of a trusted thord party, referred as Key-Distribution
Center( KDC )
1. Alice sends a request to the KDC stating that she needs a session secrete key between her
and Bob
2. KDC inform Bob about Alice request
If Bob agrees, a session key is created between the two.
Flat Multiple KDCs
When the number of people using a KDC increases, the system becomes unmanageable.
To solve the problem, we use multiple KDCs. We devide the world into domains
In this, KDCs are arranged in hierarchical model, the international KDC are at root, then national next and
local KDCs at lower level.
Session Keys
A KDC creates a secret key for each member. This secret key can be used only between the member and
the KDC, not between two members.
A session symmetric key between two parties is used only once.
KERBEROS
Kerberos is an authentication protocol, and at the same time a KDC, that has become very popular.
Several systems, including Windows 2000, use Kerberos.
Originally designed at MIT, it has gone through several versions.
KERBEROS Servers
Steps:
1. Alice chooses a large random integer number x and calculates R1=gx mod p
2. Bob chooses another large number y and calculates R2=gy mod p
3. Alice sends R1 to Bob and Bob sends R2 to Alice
4. Alice calculates key K=(R2)x mod p
5. Bob calculates key K=(R1)y
mod p Where K is the symmetric key
for the session
The symmetric key in the Diffie-Hellman method is K=gxy mod p
Let us give a trivial example to make the procedure clear. Our example uses small numbers, but note that
in a real situation, the numbers are very large. Assume that g = 7 and p = 23. The steps are as follows:
PUBLIC-KEY DISTRIBUTION
In asymmetric-key cryptography, people do not need to know a symmetric shared key; everyone shields a
private key and advertises a public key.
In public key key cryptography, everyone have access to every one’s public key: public keys are
available to the public.
So, public keys need to be distributed.
1. Public Announcement
2. Trusted Center
3. Controlled Trusted Center
4. Certification Authority
5. X.509
6. Public-Key Infrastructures (PKI)
Public Announcement
The normal method is to announce public keys publicly, but is not secure