An open API service indexing awesome lists of open source software.

https://github.com/geetesh-gupta/cryptography_demystified

Containing codes for cryptographic algos
https://github.com/geetesh-gupta/cryptography_demystified

Last synced: about 2 months ago
JSON representation

Containing codes for cryptographic algos

Awesome Lists containing this project

README

        

# Security & its Applications
Contains cryptographic assignments

##### Requirements
- Python 3

##### How to run the code
- Test for DES:
`
python3 main.py des [msg] [key]
`
- Test for AES:
`
python3 main.py aes [msg] [key]
`
- Test for Vernam:
`
python3 main.py vernam [msg] [key]
`
- Test for Caesar:
`
python3 main.py caesar [msg] [shift]
`