This is a learning exsample for encrypt and decrypt with RSA by Python.
git clone [email protected]:yamamuteki/encrypt.git
cd encrypt
pip install -r requirements.txt
ssh-keygen -f rsa_key -t rsa -b 4096
echo 'hello world!' | python encrypt.py | python decrypt.py
docker run -v $(pwd):/home python:3.9 /bin/bash -c "cd home && pip install -r requirements.txt && echo 'hello world!' | python encrypt.py | python decrypt.py"
This project is licensed under the MIT License - see the LICENSE.md file for details.