Scratch implementation of RSA Public Key Cryptography
1: Enter a message in file-to-encrypt.txt

2: Save the file and run python3 encrypt.py on the command line. This will generate your private key, public key, and encrypt the message you entered in step 1.

3: Open encryptedFile.txt to view your encrypted message.

1: Run python3 decrypt.py.
2: Follow the prompts to enter your public/private keys that were generated by encrypt.py

3: Open decryptedFile.txt to see your decrypted message! It should match the message you entered in file-to-encrypt.py
