C implementation of Caesar Cipher
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Alexander Bass 697cbd8102 add license 8 months ago
.clang-format Initial Commit 8 months ago
.gitignore Initial Commit 8 months ago
LICENSE add license 8 months ago
README.md Initial Commit 8 months ago
acaesar.c Initial Commit 8 months ago
makefile Initial Commit 8 months ago
utf8hack.c Initial Commit 8 months ago
utf8hack.h Initial Commit 8 months ago

README.md

ACaesar - Caesar cipher transcoder

This program encodes and decodes messages using a Caesar Cipher.

Usage: acaesar [options] message
Options:
   --help             Print this help message
   -o <offset>        Set the integer offset used in transcoding
   -c <character set> Set the character set
   --xyz              Set the character set to the lowercase alphabet (default)

Compiling

The program is fairly simple and thus it should be able to be compiled with any modern C compiler. This was developed using GCC on Ubuntu. A makefile is included which has only one command:

gcc acaesar.c utf8hack.c -O3 -Wall -Wextra -o acaesar