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

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

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`

---