https://github.com/abhishekkr/aqikcipher
encrypt-decrypt using a small shared password in a dumb One-Time-Pad style
https://github.com/abhishekkr/aqikcipher
c clanguage cryptography cryptography-tools
Last synced: 19 days ago
JSON representation
encrypt-decrypt using a small shared password in a dumb One-Time-Pad style
- Host: GitHub
- URL: https://github.com/abhishekkr/aqikcipher
- Owner: abhishekkr
- License: mit
- Created: 2011-04-25T16:38:09.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2021-01-29T15:40:33.000Z (over 5 years ago)
- Last Synced: 2025-01-12T13:21:40.912Z (over 1 year ago)
- Topics: c, clanguage, cryptography, cryptography-tools
- Language: C
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## a Qik Cipher
### Description:
a Quick Cipher is my attempt at creating a dumb One-Time-Pad that tries using a small shared password; good enough to mask, not to make it unhackable
### How-To Use:
* build it `mkdir out; gcc -o out/aqikcipher aQikCipher.c ./cli_switch.c` or `./build.sh`
* Encrypt: `./out/aqikcipher encode password original.file encrypted.file`
* Decrypt: `./out/aqikcipher decode password decrypted.file decrypted.file`
* Can checkout example run at `./run_example.sh`
---