Mercurial Hosting > asciicaesar
comparison README.md @ 1:ba8447ba5f5c
Fully functional.
author | VilyaemKenyaz |
---|---|
date | Wed, 23 Aug 2023 14:10:27 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:d0fbe0f50dfb | 1:ba8447ba5f5c |
---|---|
1 # AsciiCaesar | |
2 'asciicaesar' is an encryption and decryption program, it simply shifts a piece of text's ASCII values for each invidiual character by an integer, | |
3 this program takes advantage of that in C, all character variables are integers (as they should be.) | |
4 | |
5 Example, encrypting and decrypting the word "Hello" | |
6 | |
7 $ ./asciicaesar "Hello" 1 | |
8 Ifmmp | |
9 $ ./asciicaesar "Ifmmp" -1 | |
10 Hello | |
11 $ | |
12 |