uplinks:: Cryptographic Primitives
tags:: #lang/en #type/term
Cryptographic Hash Function
A Hash Function that is:
- Pre-image resistant (One-way property)
- Given h = H(M), it is computationally infeasible to find M
- Second pre-image resistant (Weak collision resistant)
- Given h = H(M), it is computationally infeasible to find M’ that H(M’) = h
- Collision resistant (Strong collision resistant)
- It is computationally infeasible to find any M1, M2 that H(M1) = H(M2)