a tool for encrypt and decrypt with different cryptography algorithim using python3.6
- DES
- AES
- RC4
- RSA
`pip3 install pyDes`
`pip3 install pycryptodome` | `pip3 install pycrypt`
`pip3 install rc4-python3`
`pip3 install rsa`
python cryptography.py <inputfile> <encrypt/decrypt> <key1> <key2> <outputfile> <des/aes/rc4/rsa>
python3 crytography.py ./1.jpg encrypt 12345678 12345678 ./endes.txt des
python3 crytography.py ./endes.txt decrypt 12345678 12345678 ./dedes.jpg des
python3 crytography.py ./1.jpg encrypt 1234567890123456 12345678 ./enaes.txt aes
python3 crytography.py ./enaes.txt decrypt 1234567890123456 12345678 ./deaes.jpg aes
python3 crytography.py ./1.jpg encrypt 12345678 12345678 ./enrc4.txt rc4
python3 crytography.py ./enrc4.txt decrypt 12345678 12345678 ./derc4.jpg rc4
python3 crytography.py ./1.jpg encrypt 12345678 12345678 ./enrsa.txt rsa
python3 crytography.py ./enrsa.txt decrypt 12345678 12345678 ./dersa.jpg rsa