maths.freeNumber 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.

Gumagana halimbawa: inverse of 17 mod 3120

Inverse of 17 mod 3120

17,\ 3120

Hakbang-hakbang

  1. 17x \equiv 1 \pmod{3120}

    We want x with a·x ≡ 1 (mod m). It exists only when gcd(a, m) = 1.

  2. 3120 = 183 \times 17 + 9

    Euclid step.

  3. 17 = 1 \times 9 + 8

    Euclid step.

  4. 9 = 1 \times 8 + 1

    Euclid step.

  5. 8 = 8 \times 1 + 0

    Euclid step.

  6. 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.

Ipahayag ang sagot
17^{-1} \equiv 2753 \pmod{3120}

Symbols used here

a \equiv b \pmod n
congruent modulo n
n divides a − b; a and b have the same remainder.
\pm
plus or minus
Both signs at once: x = 3 ± 2 means 5 and 1.
\log_b x,\ \ln x
logarithm, natural log
The exponent b must be raised to for x; ln uses base e.
\sum_{k=1}^{n} a_k
summation
Add a_k for k = 1 up to n.
\prod_{k=1}^{n} a_k
product
Multiply a_k for k = 1 up to n.
\mathbb{N},\ \mathbb{Z},\ \mathbb{Q},\ \mathbb{R},\ \mathbb{C}
number sets
Naturals, integers, rationals, reals, complex numbers.
a \mid b,\ \gcd(a,b)
divides, greatest common divisor
b is a multiple of a; the largest number dividing both.
\varphi(n),\ \pi(x)
Euler's totient, prime-counting function
Count of 1..n coprime to n; number of primes up to x.
\mathbb{Z}/n\mathbb{Z},\ \mathbb{Z}_n
integers modulo n
The remainders 0…n−1 with clock arithmetic.
a \bmod n
remainder
What is left after dividing a by n.

How to: RSA: cryptography from number theory

  1. We want x with a·x ≡ 1 (mod m). It exists only when gcd(a, m) = 1.
  2. Euclid step.
  3. Euclid step.
  4. Euclid step.
  5. Euclid step.
  6. 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.

Subukan ang iyong sarili

Higit pa sa Number Theory