-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaesar_decryption.py
45 lines (33 loc) · 1.32 KB
/
caesar_decryption.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Decryption algorithm
from colorama.ansi import Fore
from colours import print_with_color
import time
from extras import decor
@decor
def intro():
time.sleep(1)
print_with_color(" Welcome To Caesar Cipher Decryptor", color=Fore.GREEN)
def note():
print()
print_with_color("NOTE: YOU ALWAYS NEED TO HAVE THE SAME KEY USED TO ENCRYPT THE TEXT!", color=Fore.RED)
def caesar_decryption(ciphertext, key):
decrypted_str = ""
for i in ciphertext:
if i.isupper():
if (ord(i) - 65 - key) < 0:
uni_value = 65 + ((ord(i) - 65 - key) + 26) % 26
decrypted_str = decrypted_str + chr(uni_value)
else:
uni_value = 65 + (ord(i) - 65 - key) % 26
decrypted_str = decrypted_str + chr(uni_value)
elif i.islower():
if (ord(i) - 97 - key) < 0:
uni_value = 97 + ((ord(i) - 97 - key) + 26) % 26
decrypted_str = decrypted_str + chr(uni_value)
else:
uni_value = 97 + (ord(i) - 97 - key) % 26
decrypted_str = decrypted_str + chr(uni_value)
else:
decrypted_str = decrypted_str + i
time.sleep(1)
print("The decrypted text is:", decrypted_str)