annotate README.md @ 1:ba8447ba5f5c

Fully functional.
author VilyaemKenyaz
date Wed, 23 Aug 2023 14:10:27 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
1 # AsciiCaesar
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
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,
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
3 this program takes advantage of that in C, all character variables are integers (as they should be.)
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
4
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
5 Example, encrypting and decrypting the word "Hello"
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
6
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
7 $ ./asciicaesar "Hello" 1
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
8 Ifmmp
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
9 $ ./asciicaesar "Ifmmp" -1
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
10 Hello
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
11 $
ba8447ba5f5c Fully functional.
VilyaemKenyaz
parents:
diff changeset
12