jithin-renji / caesar-cipher

A toy program to encrypt and decrypt a given string of file using caesar cipher.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Caesar Cipher

This is a program to encrypt and decrypt a given string of file using caesar cipher.

Installation

  1. Change to the source directory.
  2. Run the following commands:
sudo make
sudo make install

Usage

Usage: caesar <-e | -d> -f <file name> [-o <output file name>] <shift size>
       caesar <-e | -d> <plain text> <shift size>
       caesar <-e | -d> -I <shift size>

Options:
	-e, --encrypt		Encrypt plain text
	-d, --decrypt		Decrypt Caesar cipher text
	-I, --input		Take input from stdin
	-f, --file <file name>	Encrypt/Decrypt given file

	-o, --out <file name	Name of the output file in which
				the encrypted/decrypted fileis going
				to be stored

	-h, --help		Show this help message
	-V, --version		Show version information

See "COPYING" for license information.

About

A toy program to encrypt and decrypt a given string of file using caesar cipher.

License:GNU General Public License v3.0


Languages

Language:C 98.4%Language:Makefile 1.6%