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
- Host: GitHub
- URL: https://github.com/geetesh-gupta/cryptography_demystified
- Owner: geetesh-gupta
- License: mit
- Created: 2020-03-26T13:03:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-27T14:21:52.000Z (about 5 years ago)
- Last Synced: 2025-02-08T15:13:52.316Z (4 months ago)
- Language: Python
- Size: 26.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]
`