Cryptography Algorithm

This commit is contained in:
Harshil Darji 2016-08-01 22:41:06 +05:30
parent 005fb0c5a1
commit 5b72d5e0a1

View File

@ -0,0 +1,18 @@
message = input("Encrypted message: ")
LETTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
message = message.upper()
for key in range(len(LETTERS)):
translated = ""
for symbol in message:
if symbol in LETTERS:
num = LETTERS.find(symbol)
num = num - key
if num < 0:
num = num + len(LETTERS)
translated = translated + LETTERS[num]
else:
translated = translated + symbol
print("Decryption using Key #%s: %s" % (key, translated))