caesars_cipher_python

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 76b2d8210343e3e2b2a73d9c9692b2758217acab
parent 0410ea206fc7d7f65642efb4a9aa34b3fcc4c412
Author: MichaelDim02 <31562759+MichaelDim02@users.noreply.github.com>
Date:   Thu, 22 Oct 2020 13:39:50 +0000

Update README.md
Diffstat:
MREADME.md | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -1,9 +1,12 @@ # CAESAR'S CIPHER IN PYTHON -A Caesar's Cipher implementation in Python +A Caesar's Cipher implementation in Python including a bruteforcing tool for cracking the cipher. The code is as minimalistic as it gets and well optimized. +Usage example: python cen.py 10 'This is text to be encrypted' +Make sure you include the apostrophes. # WARNING! Caesar's cipher is completely insecure and broken. Do not use it in any scenario in which actual security is required. +The fact that I provide an 100% successful bruteforcing tool (bf.py) used to crack the Caesar's cipher should be indicative of its security, or lack thereof. You can use it to avoid word detection algorithms, but that's pretty much it. This is for educational purposes only.