Homework on Hash Functions - Questions, July 17th 2020
-
Describe hash functions with your own words.
A hash function is when input of strings of any length is process through
a computational method, to produce a fixed length output of characters. -
How are hash functions used in cryptocurrencies like bitcoin?
Hash functions is used in crypto currencies as a means of security to protect
the transaction on the public ledger. -
What does it mean when we say that hash functions need to be collision resistant?
A hash function is collision resistant when two inputs result to two different outputs. When two inputs hash the same output results, itās not collision resistant.
-Hector A. Martinez