maths.free › Number Theory › RSA: cryptography from number theory
RSA: cryptography from number theory
Public keys from two primes, and why factoring is the lock.
Choose primes p, q; n = pq; pick e coprime to φ(n) = (p − 1)(q − 1); the private key d is e⁻¹ mod φ(n). Encrypt mᵉ mod n, decrypt with d. The security is the difficulty of factoring n. Picture it: a padlock anyone can snap shut (e) that only the key (d) opens. Think it: correctness is Euler's theorem; the whole scheme is one modular inverse.
Օրինակ: inverse of 17 mod 3120
Քայլ առ քայլ
- 17x \equiv 1 \pmod{3120}
We want x with a·x ≡ 1 (mod m). It exists only when gcd(a, m) = 1.
- 3120 = 183 \times 17 + 9
Euclid step.
- 17 = 1 \times 9 + 8
Euclid step.
- 9 = 1 \times 8 + 1
Euclid step.
- 8 = 8 \times 1 + 0
Euclid step.
- 17 \times 2753 = 46801 \equiv 1 \pmod{3120}
Back-substitute (extended Euclid) to express 1 as a combination of a and m; the coefficient of a is the inverse.
Առաջարկել պատասխանը
Symbols used here
n divides a − b; a and b have the same remainder.
Both signs at once: x = 3 ± 2 means 5 and 1.
The exponent b must be raised to for x; ln uses base e.
Add a_k for k = 1 up to n.
Multiply a_k for k = 1 up to n.
Naturals, integers, rationals, reals, complex numbers.
b is a multiple of a; the largest number dividing both.
Count of 1..n coprime to n; number of primes up to x.
The remainders 0…n−1 with clock arithmetic.
What is left after dividing a by n.
How to: RSA: cryptography from number theory
- We want x with a·x ≡ 1 (mod m). It exists only when gcd(a, m) = 1.
- Euclid step.
- Euclid step.
- Euclid step.
- Euclid step.
- Back-substitute (extended Euclid) to express 1 as a combination of a and m; the coefficient of a is the inverse.
Questions people ask
Why are primes so important?
Every integer factors into primes in exactly one way, so primes are the atoms of multiplication. Cryptography relies on that factoring being easy to state and hard to do.
How do I tell whether a big number is prime?
Trial division up to the square root works for small numbers. For large ones, probabilistic tests (Miller–Rabin) give an answer that is wrong with negligible probability, and deterministic tests (AKS) exist but are slower.
Փորձեք ինքներդ
Ցուցադրել Number Theory
Prime factorisationPrime numbersGCD and LCMModular arithmeticDivisorsSequencesNumber basesDiophantine equationsFermat's little theorem and Euler's theorem