view README.md @ 2:c96b197faa9d default tip

Autmatic Win32 Porting
author VilyaemKenyaz
date Thu, 28 Sep 2023 13:20:40 -0400
parents ba8447ba5f5c
children
line wrap: on
line source

# AsciiCaesar
'asciicaesar' is an encryption and decryption program, it simply shifts a piece of text's ASCII values for each invidiual character by an integer,
this program takes advantage of that in C, all character variables are integers (as they should be.)

Example, encrypting and decrypting the word "Hello"

$ ./asciicaesar "Hello" 1
Ifmmp
$ ./asciicaesar "Ifmmp" -1
Hello
$