annotate README.md @ 2:c96b197faa9d default tip

Autmatic Win32 Porting
author VilyaemKenyaz
date Thu, 28 Sep 2023 13:20:40 -0400
parents ba8447ba5f5c
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