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

https://github.com/xxkfqz/vernciph

One-time pad implementation
https://github.com/xxkfqz/vernciph

Last synced: about 2 months ago
JSON representation

One-time pad implementation

Awesome Lists containing this project

README

        

'vernciph' - one-time pad (aka Vernam Cipher) implementation for *NIX-like OS.

Build:
make install

Usage:
Encrypting
vernciph -k /path/to/input/key/file < /path/to/input/file > /path/to/output/file
vernciph < /path/to/input/file > /path/to/output/file 2> /path/to/key
Decrypting
vernciph -k /path/to/key/file < /path/to/encrypted/file > /path/to/decrypted/file

If key file is not exists it will be created at specified path and data will be readed from /dev/random

xxkfqz 2020