Plurrrr

Mon 20 Dec 2021

Implementing RSA in Python from Scratch (Part 1)

I'm sure many programmers, particularly web developers have heard of the RSA cryptography system. RSA is an asymmetric cryptography system, meaning that one key is used for encryption and the other for decryption. I've seen a lot of articles explaining the general principles of asymmetric cryptography, but I have not seen any that give easy-to-understand explanations of the mathematical background behind these algorithms, so I decided to write this article.

Source: Implementing RSA in Python from Scratch (Part 1).