1/6
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
What is multiplicative inverse? [2]
x is the multiplicative inverse of a mod n if
ax ≡ 1 (mod n)
What is the notation for multiplicative inverse? [1]
x = a-1 (mod n)
What is the form of the public key? [2]
(e, n)
What is the form of the private key? [1]
d
What are the 4 steps for setting up RSA encryption? [4]
2 large prime numbers, p and q, and n = pq
φ(n) = (p - 1)(q - 1) = n - p - q + 1
e is an integer 1 ≤ e ≤ φ(n), GCD(e, φ(n)) = 1
d ≡ e-1 mod φ(n)
What is the encrypting function? [2]
C = Pe mod n
What is the decrypting function? [2]
P = Cd mod n