RSA Flashcards

1
Q

In RSA:
How is p and q chosen?

A

prime numbers that multiply to N
N = pq

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

In RSA:
(a) What does e represent?
(b) Formula for e

A

(a) Represents a part of the public key

(b)
e is prime and relatively prime to N

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

In RSA:
(a) What does d represent?
(b) Formula for d
(c) Ways to solve for d

A

(a) d is the private key

(b)
d === e^-1mod(p - 1)(q - 1)

(c)
Extended Euclid algorithm to find d

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

In RSA:
What is the public key?

A

(N, e)

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

In RSA:
Formula to encrypt message m

A

y = m^e mod N

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

In RSA:
Formula to decrypt message m

A

m = y^d mod N

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