From cc08e0cda0992572ffa58393c330a5a18d3695be Mon Sep 17 00:00:00 2001 From: de_soot <78423238+de-soot@users.noreply.github.com> Date: Thu, 13 Jun 2024 13:17:24 +0000 Subject: [PATCH] Update README.md Signed-off-by: de_soot <78423238+de-soot@users.noreply.github.com> --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e30f4e..3411998 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,14 @@ # Caesar Cipher CLI -Caesar Cipher in the command line made in Python. +Caesar Cipher in the command-line made in Python. -Originally made for my school's computer science class homework assignment, but expanded to include extra features. +Originally made for my school's computer science class homework assignment, but expanded upon to include extra features for fun. ## Features +- Classic Caesar Cipher encryption gameplay +- Customisable encryption key +- Works for both capital and lowercase letters and numbers (alphanumeric) +- Cycles back if out of bounds (e.g.: Z + 1 -> A ; 9 + 1 -> 0) +- Decryption supported by inputting the negative of encryption keys ## Usage ### Local