-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodulo2.py
31 lines (22 loc) · 3.48 KB
/
modulo2.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
# Given encrypted message as a list of numbers
encrypted_message = [
630, 471, 514, 336, 688, 758, 957, 619, 165, 750, 228, 614, 141, 546, 552, 671, 440, 393, 590, 171, 863, 643, 136, 113, 721, 495, 307, 397, 717, 471, 619, 546, 393, 610, 650, 958, 211, 286, 552, 750, 113, 787, 144, 960, 159, 495, 758, 717, 136, 414, 171, 958, 199, 474, 113, 630, 643, 546, 276, 141, 336, 731, 619, 688, 174, 228, 374, 438, 718, 286, 863, 171, 159, 440, 957, 787, 165, 514, 960, 552, 495, 671, 643, 717, 474, 165, 774, 758, 832, 307, 650, 721, 750, 610, 144, 546, 619, 590, 276, 211, 393, 136, 528, 199, 614, 336, 552, 228, 688, 286, 438, 171, 474, 643, 958, 826, 721,
750, 440, 731, 619, 165, 307, 958, 495, 630, 211, 750, 311, 199, 590, 717, 393, 514, 525, 336, 960, 136, 610, 474, 171, 546, 440, 552, 471, 307, 774, 958, 758, 174, 643, 159, 863, 721, 211, 688, 731, 619, 393, 718, 750, 614, 199, 397, 171, 107, 336, 228, 495, 165, 144, 438, 107, 474, 960, 107, 440, 643, 374, 958, 307, 619, 107, 136, 113, 721, 717, 211, 826, 514, 832, 199, 750, 165, 610, 171, 174,
787, 141, 144, 336, 286, 758, 957, 440, 957, 643, 276, 546, 474, 113, 510, 650, 552, 228, 495, 671, 619, 393, 717, 438, 414, 307, 590, 514, 159, 546, 958, 610, 165, 474, 211, 863, 528, 199, 552, 750, 960, 630, 495, 471, 336, 276, 758, 958, 590, 718, 228, 717, 510, 750, 440, 171, 107, 307, 958, 136, 960, 688, 546, 141, 211, 787, 750, 758, 397, 643, 958, 113, 276, 144, 438, 165, 228, 286, 774, 552, 514, 525, 199, 750, 495, 671, 336, 717, 650, 958, 414, 960, 159, 440, 721, 528, 758, 474, 165, 610, 832, 307, 750, 471, 211, 619, 546, 171, 688, 731, 590, 643, 718, 393, 199, 619, 276, 171, 136, 590, 643, 174, 228, 286, 614, 311, 619, 960, 474, 650, 958, 336, 159, 144, 438, 688, 440, 525, 758, 165, 474, 721, 718, 393, 630, 307, 276, 552, 650, 136, 495, 141, 211, 113, 165, 474, 717, 671, 228, 286, 107, 960, 546, 721, 171, 471, 643, 750, 863, 528, 619, 958, 199, 374, 171, 758, 165, 718, 750, 336,
958, 440, 731, 643, 474, 307, 750, 552, 619, 159, 174, 228, 311, 495, 141, 211, 113, 826, 171, 688, 643, 774, 199, 717, 514, 958, 336, 510, 610, 144, 546,
787, 671, 438, 440, 286, 960, 957, 552, 471, 619, 495, 393, 717, 141, 307, 414, 211, 171, 650, 546, 113, 514, 374, 758, 552, 510, 113, 495, 671, 199, 717, 228, 397, 336, 546, 471, 440, 113, 750, 307, 643, 165, 960, 544, 211, 525, 141, 619, 552, 671, 171, 630, 787, 199, 159, 336, 863, 528, 440, 474, 165, 471, 643, 832, 307, 525, 758, 630, 211, 731, 495, 141, 199, 474, 610, 614, 136, 228, 717, 165, 474, 414, 336, 174, 619, 113, 721, 510, 440, 311, 144, 958, 307, 171, 688, 113, 438, 286, 211, 199, 832, 336, 159, 590, 514, 688, 393, 960, 863, 440, 750, 136, 758, 546, 826, 228, 774, 671, 552, 414, 307, 718, 721, 528, 211, 165, 199, 643, 832, 336, 286, 610, 495, 958, 619, 276, 440,
750, 307, 731, 171, 474, 211, 958, 717, 165, 199, 546, 393, 397, 643, 107, 336, 960, 552, 471, 619, 787, 630, 440, 159,
# Add remaining numbers from the original encrypted message
]
# Function to decrypt using modulo 26
def decrypt_with_mod26(encrypted_message):
return ''.join(chr((num % 26) + ord('A')) for num in encrypted_message)
# Function to decrypt using modulo 10
def decrypt_with_mod10(encrypted_message):
return ''.join(str(num % 10) for num in encrypted_message)
# Apply both decryption methods
decrypted_letters = decrypt_with_mod26(encrypted_message)
decrypted_numbers = decrypt_with_mod10(encrypted_message)
# Display results
print("Decrypted using mod 26:", decrypted_letters)
print("Decrypted using mod 10:", decrypted_numbers)