Save
...
Exchanging Data
Compression, Encryption and Hashing
Hashing
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Theo
Visit profile
Cards (13)
What does a hashing function do?
Transforms a
string
into a
fixed length
value
View source
What is a popular hashing algorithm?
SHA1
View source
What happens to the hash value if the original message changes slightly?
It produces a totally different hash value
View source
How does hashing differ from encryption?
Hashing is a
one-way
process
View source
Can you retrieve the original value from a hashed value?
No, it is a
one-way
process
View source
Why is hashing ideal for storing passwords?
It prevents passwords from being
read
View source
What happens when a user logs into an account?
The system checks the
hashed
password
View source
What is a consequence of storing passwords in plain text?
Hackers
can easily read the passwords
View source
How does hashing protect passwords during login?
It sends
hashed
values instead of plain text
View source
What is the time complexity of hashing for searching data?
Constant
O
(
1
)
O(1)
O
(
1
)
time complexity
View source
What are the uses of hashing?
Preventing
password exposure
Quick searching in
data structures
Insertion
and
deletion
of data
View source
How does hashing improve data retrieval in memory?
It allows
immediate
item location
without
sorting
View source
What is the key question to answer after watching the video?
What is
hashing
?
View source