changeset 1:ba8447ba5f5c

Fully functional.
author VilyaemKenyaz
date Wed, 23 Aug 2023 14:10:27 -0400
parents d0fbe0f50dfb
children c96b197faa9d
files README.md asciicaesar c.ksh
diffstat 3 files changed, 13 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/README.md	Wed Aug 23 14:10:27 2023 -0400
@@ -0,0 +1,12 @@
+# 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
+$
+
Binary file asciicaesar has changed
--- a/c.ksh	Sun Aug 13 15:38:47 2023 -0400
+++ b/c.ksh	Wed Aug 23 14:10:27 2023 -0400
@@ -2,5 +2,5 @@
 clear
 printf "Compiling\n"
 rm asciicaesar
-gcc asciicaesar.c -o asciicaesar
+tcc asciicaesar.c -o asciicaesar
 cp asciicaesar /usr/bin/