arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

Introduction / overview

Authors: Zademn Reviewed by:

hashtag
Introduction

Another desired propriety of our cryptographic protocols is data / message integrity. This propriety assures that during a data transfer the data has not been modified.

Suppose Alice has a new favourite game and wants to send it to Bob. How can Bob be sure that the file he receives is the same as the one Alice intended to send? One would say to run the game and see. But what if the game is a malware? What if there are changes that are undetectable to the human eye?

Hashes are efficient algorithms to check if two files are the same based on the data they contain. The slightest change (a single bit) would change the hash completely.

circle-check

On the internet, when you download, files you often see a number near the download button called the hash of that file. If you download that file, recalculate the hash locally and obtain the same hash you can be sure that the data you downloaded is the intended one.

circle-check

Another use for hashes is storing passwords. We don't want to store plaintext passwords because in case of a breach the attacker will know our password. If we hash them he will have to reverse the hash (or find a collision) to use our password. Luckily the hashes are very hard to reverse and collision resistant by definition and construction.

triangle-exclamation

Note that hashes need a secure channel for communication. Alice must have a secure way to send her hash to Bob. If Eve intercepts Alice's message and hash she can impersonate Alice by changing the file, computing the hash and sending them to Bob. Hashes do not provide authenticity.

hashtag
Definitions and Formalism

Definition - Hash

A hash is an efficient deterministic function that takes an arbitrary length input and produces a fixed length output (digest, hash). Let be a function where

  • = message space

  • = digest space

Desired proprieties

  • Deterministic

  • Fast to compute

  • Small changes change the hash completely

How to use a hash:

  • Suppose you want to check if Alice and Bob have the same version of some file (File integrity)

    • They compute

    • They check if

hashtag
Proprieties

  • Preimage Image Resistance

  • Second Preimage resistance

  • Resistant to collisions

hashtag
1. Preimage Resistance

The hash function must be a one way function. Given find s.t

circle-info

Intuition

It should be unfeasible to reverse a hash function ( time where is the number of output bits)

This propriety prevents an attacker to find the original message from a hash

hashtag
2. Second Preimage Resistance

Given it should be hard to find with

Attack game

An adversary is given a message and outputs a message .

wins the game if he finds

His advantage is where is a probability

  • In practice a hash function with bits output should need queries before one can find a second preimage

  • This propriety prevents an attacker to substitute a message with another and get the same hash

hashtag
3. Hash Collisions

circle-info

Intuition

A hash collision happens when we have two different messages that have the same hash

Why do we care about hash collisions?

  • Since hashes are used to fastly verify a message integrity if two messages have the same hash then we can replace one with another => We can play with data

  • Now, we want to hash big files and big messages so => It would appear that hash collisions are possible

  • Natural collisions are normal to happen and we consider them improbable if is big enough ( )

hashtag
Let's throw some definitions

Attack game

An adversary outputs two messages

wins the game if he finds

His advantage is

Security

A hash function is collision resistant if for all efficient and explicit adversaries the advantage is negligible

circle-info

Intuition

We know hash collisions exist (therefore an efficient adversary must exist) and that is easy to prove therefore we request an explicit algorithm that finds these collisions

circle-info

This propriety makes it difficult for an attacker to find 2 input values with the same hash

hashtag
Difference from 2nd preimage

  • There is a fundamental difference in how hard it is to break collision resistance and second-preimage resistance.

    • Breaking collision-resistance is like inviting more people into the room until the room contains 2 people with the same birthday.

    • Breaking second-preimage resistance is like inviting more people into the room until the room contains another person with your birthday

Implications

Lemma 1

Assuming a function is preimage resistant for every element of the range of is a weaker assumption than assuming it is either collision resistant or second preimage resistant.

Note

  • Provisional implication

Lemma 2

Assuming a function is second preimage resistant is a weaker assumption than assuming it is collision resistant.

hashtag
Resources

  • - Wikipedia entry

  • - Computerphile

hashtag
Bibliography

  • Figure 1 - Wikipedia

Preimage, second preimage and collision resistance (Explained below)

Yet, we don't want hash collisions to be computable

  • We don't want an attacker to be able to craft collisions or find collisions given a message

.
  • One of these fundamentally takes longer than the other

  • https://www.cs.ucdavis.edu/~rogaway/papers/relates.pdfarrow-up-right - Good read for more details

    H:M⟶TH:\mathcal{M} \longrightarrow \mathcal{T}H:M⟶T
    M\mathcal{M}M
    T\mathcal{T}T
    H(a),H(b)H(a), H(b)H(a),H(b)
    H(a)=H(b)H(a) = H(b)H(a)=H(b)
    t∈Tt \in \mathcal{T}t∈T
    m∈Mm \in \mathcal{M}m∈M
    H(m)=tH(m) = tH(m)=t
    O(2l)\mathcal{O}(2^l)O(2l)
    lll
    mmm
    m′≠mm' \neq mm′=m
    H(m′)=H(m)H(m') = H(m)H(m′)=H(m)
    A\mathcal{A}A
    mmm
    m′≠mm' \neq mm′=m
    A\mathcal{A}A
    H(m)=H(m′)H(m) = H(m')H(m)=H(m′)
    Pr[A finds a second preimage]Pr[\mathcal{A} \text{ finds a second preimage}]Pr[A finds a second preimage]
    Pr(â‹…)Pr(\cdot)Pr(â‹…)
    lll
    2l2^l2l
    ∣M∣>>∣T∣|\mathcal{M}| >> |\mathcal{T}|∣M∣>>∣T∣
    T\mathcal{T}T
    SHA256⇒T=\text{SHA256} \Rightarrow T =SHA256⇒T=
    {0,1}256\{0,1\}^{256}{0,1}256
    A\mathcal{A}A
    m0≠m1m_0 \neq m_1m0​=m1​
    A\mathcal{A}A
    H(m0)=H(m1)H(m_0) = H(m_1)H(m0​)=H(m1​)
    Pr[Adversary finds a collision]Pr[\text{Adversary finds a collision}]Pr[Adversary finds a collision]
    HHH
    HHH
    HHH
    https://crypto.stackexchange.com/questions/10602/why-does-second-pre-image-resistance-imply-pre-image-resistance?rq=1arrow-up-right
    https://crypto.stackexchange.com/questions/9684/pre-image-resistant-but-not-2nd-pre-image-resistantarrow-up-right
    https://en.wikipedia.org/wiki/Cryptographic_hash_functionarrow-up-right
    https://www.youtube.com/watch?v=b4b8ktEV4Bgarrow-up-right
    https://www.tutorialspoint.com/cryptography/cryptography_hash_functions.htmarrow-up-right
    Figure 1.
    Figure 2. Security game - second preimage resistance
    Figure 3. Security game - Collision resistance
    from hashlib import sha256
    m1 = b"Some file"
    m2 = b"Some file"
    sha256(m1).digest() == sha256(m2).digest() # -> True