A implementation of RSA for my SOP
This implementation should not be seen as secure in anyway.
Install python3
Download and unzip the primenumber list from here in the root of the project
Run keygen.py to generate your keypair:
python keygen.py -b <keysize>You will get two files in the generated_keys directory. The files is named in the format
<name>.<priv|pub>.json
or
<year>-<month>-<day>_<hours><minutes><seconds>.<priv|pub>.json
The first extension declares if the key is private or public. You can share the public with others, but keep the private secret.