I What resources are there for RSA for the layman?

matqkks
Messages
280
Reaction score
5
I am looking for any resources which explain the RSA algorithm for the layman. I have found a number of sources but they all tend to end with a morass of technical details. This is for a first year undergraduate course in number theory who have covered some basic work on modular arithmetic.
 
Mathematics news on Phys.org
I started with "A Concrete Introduction into Higher Algebra" by Lindsay Childs, Ch. 14. The chapter has a simple example. It' a little tough but try to muscle-through it. Good cooks try again.
 
matqkks said:
I am looking for any resources which explain the RSA algorithm for the layman. I have found a number of sources but they all tend to end with a morass of technical details. This is for a first year undergraduate course in number theory who have covered some basic work on modular arithmetic.

The steps of the algorithm in rough lines are

1 Generate two (large) prime numbers ##p_1, p_2## // steps 1, 2, 3, 4, 5 executed from server in advance
2 Take their product ##k = p_1p_2##
3 Let function ##f## be such that ##m = f(k) = (p_1 - 1)(p_2 - 1)##
4 Choose a prime number ##p_3## that is co-prime to ##m## with ##GCD(m, p_3) = 1## where ##1 \lt p_3 \lt m## // ##k , p_3## is the public key
5 Choose a number ##n## such that ##p_3n \pmod m = 1## //server keeps ##n, m## as its secret key
6 Encrypt message M: ##E = M^{p_3} \pmod k## // Browser encrypts the message using this formula and creates the encrypted E message
7 Decrypt message E: ##M = E^n \pmod k## // Server uses this math to decrypt E and effectively recover M

If you put some (preferably small in order to verify) numbers you can have a more practical sense about the algorithm.
 
I know of no better introduction than this excellent article to be found in an old Quantum magazine: Fermat’s Little Theorem (proving its value to mathematicians), V. Senderov and A. Spivak, May/Jun00, p14 (Feature)
http://static.nsta.org/pdfs/QuantumV10N5.pdf
 
  • Like
Likes BvU
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
I'm interested to know whether the equation $$1 = 2 - \frac{1}{2 - \frac{1}{2 - \cdots}}$$ is true or not. It can be shown easily that if the continued fraction converges, it cannot converge to anything else than 1. It seems that if the continued fraction converges, the convergence is very slow. The apparent slowness of the convergence makes it difficult to estimate the presence of true convergence numerically. At the moment I don't know whether this converges or not.
Back
Top