3.3c — Cryptographic Protection (13)

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:51 PM on 8/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

Plaintext

Data in its original, readable form before encryption.

2
New cards

Ciphertext

The unreadable result of encrypting plaintext.

3
New cards

Confusion (cryptography)

The property that encrypted output looks dramatically different from the original input.

4
New cards

Hashing

One-way function converting data into a fixed-length string. Cannot be reversed to recover the original data.

5
New cards

Message digest / fingerprint

Alternate names for a hash output.

6
New cards

Hashing vs encryption

Encryption is reversible with a key; hashing is one-way by design. Never encrypt stored passwords, always hash them.

7
New cards

Hash use case: passwords

Store the hash of a password, never the plaintext or an encrypted version.

8
New cards

Hash use case: integrity verification

Compare a downloaded file's computed hash against a published hash to confirm nothing changed in transit.

9
New cards

Digital signature

Hashing combined with public key cryptography; verifies both sender authenticity and message integrity.

10
New cards

Collision (hashing)

Two different inputs producing the same hash output. A flaw that retires a hashing algorithm from use.

11
New cards

SHA-256

A modern hashing algorithm producing a 256-bit (64 hex character) output.

12
New cards

Avalanche effect

A tiny input change (one character) produces a dramatically different hash output.

13
New cards

Salting

Adding random data to a password before hashing so identical passwords don't produce identical hashes, defeating precomputed rainbow-table attacks.