RSA is a type of encryption that is asymmetrical, meaning that people who can encode it can't decode it just by reversing how they encoded their message. This project generates a working public key, (e, n), and private key, (d, n). N is the same number. To encode messages manually, convert the message into a number, raise it to the power of e (might be very big), and use it to modulo n. (Message)^e (mod n) Decode a message the same way, replacing e with your private key, d. I know it's nerdy... I'm working on a project so that encodes/decodes messages automatically. Learn more about RSA encryption at https://mathworld.wolfram.com/RSAEncryption.html https://en.wikipedia.org/wiki/RSA_(cryptosystem) Log 11/20/24 IT WORKS!!!