Cryptography and Society Flashcards

1
Q

What are the two kinds of encryption?

A

Asymmetric encryption

Symmetric encryption

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Symmetric Encryption?

A

Encryption and decryption are done with the same shared key.

i.e. in Caesar cipher: if the key = 5,
ABC becomes FGH, and you use the same key to decrypt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is Asymmetric Encryption?

A

Encryption is done with the PUBLIC KEY of the receiver

Decryption is done with the PRIVATE KEY of the receiver

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How are public and private keys made?

A

1) choose two large primes, 𝑝 and π‘ž;
2) calculate 𝑛 = 𝑝 Γ— π‘ž;
3) calculate 𝑧 = (𝑝 βˆ’ 1) Γ— (π‘ž βˆ’ 1);
4) choose 𝑒 to be relatively prime to 𝑧*;
5) choose 𝑑 such that (𝑑 Γ— 𝑒) mod 𝑧 = 1.
The public key is (𝑒, 𝑛); the private key is (𝑑, 𝑛).

*Two numbers are relatively prime if they have no common factors other than 1.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Formula for Asymmetric Encryption

A

𝐢 = 𝑀^𝑒 mod 𝑛

ciphertext C
plaintext M

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Formula for Asymmetric Decryption

A

𝑀 = 𝐢^d mod 𝑛

ciphertext C
plaintext M

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Arguments for Encryption

A

Allows good people to go about their legitimate business without government surveillance (Orwellian society)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Arguments against Encryption

A

Allows bad people to go about nefarious business without detection by government

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is Zimmerman’s Law

A

The idea that the ability of computers to track us doubles every eighteen months.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What did Ed Snowden reveal?

A

Mass surveillance by the US NSA of network links and attempts to weaken encryption.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does the Internet Goes Dark mean?

A

Where HTTPS was implemented and all data was encrypted, meaning it was hidden from the NSA.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is End to End encryption?

A

The software creates the encryption and decryption keys. Only the sender and receiver can read the messages, not even internet providers or the service it was sent on i.e. WhatsApp

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Why did the Department of Justice issue an investigation into Phil Zimmermann’s activities?

A

His PGP program used 128-bit keys.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly