by Lily Taylor, Zoe Tobien, Tehya Weaver, and Tayloir Wiley.
RSA Encryption Cryptography
What is RSA Encryption Cryptography?
RSA was one of the first public-key* cryptosystems and it is widely used for secure data transmission. It was first created by Ron Rivest, Adi Shamir, and Leona Adleman.
*Public key is used to establish a secret key, and the public key is sent in public. We then use the private key method to encrypt and decrypt large amounts of data, but no one knows the private key.
- To code: U^s=x X(mod N)=Y
- To decode Y^t=O O(mod N)=U
In computing, the modulo operation finds the remainder after division of one number by another. Given two positive numbers, a and n, a modulo n (in other words a mod n) is the remainder of the a division of a by n, where a is the dividend and n is the divisor.

