1. RSA Private Key Generation
Cryptography StudentBackground
Working through textbook RSA key generation with public exponent e = 17 and totient φ(n) = 3120.
Problem
Calculate the private decryption exponent d = 17⁻¹ mod 3120 with step-by-step derivation.
How to use
Set Value a to 17, Modulus m to 3120, and choose 'Show extended Euclid steps' under Output style.
a = 17, m = 3120, style = stepsOutcome
Receives the step table showing gcd(17, 3120) = 1, Bézout identity 17 × (-367) + 3120 × 2 = 1, and the resulting modular inverse 2753 verified by 17 × 2753 = 46801 = 15 × 3120 + 1.