-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencypt_message.py
More file actions
39 lines (38 loc) · 1.54 KB
/
Copy pathencypt_message.py
File metadata and controls
39 lines (38 loc) · 1.54 KB
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
def getDoubleAlphabet(alphabet):
doubleAlphabet = alphabet + alphabet
return doubleAlphabet
def getMessage():
stringToEncrypt = input("Please enter a message to encrypt: ")
return stringToEncrypt
def getCipherKey():
shiftAmount = input( "Please enter a key (whole number from 1-25): ")
return shiftAmount
def encryptMessage(message, cipherKey, alphabet):
encryptedMessage = ""
uppercaseMessage = ""
uppercaseMessage = message.upper()
for currentCharacter in uppercaseMessage:
position = alphabet.find(currentCharacter)
newPosition = position + int(cipherKey)
if currentCharacter in alphabet:
encryptedMessage = encryptedMessage + alphabet[newPosition]
else:
encryptedMessage = encryptedMessage + currentCharacter
return encryptedMessage
def decryptMessage(message, cipherKey, alphabet):
decryptKey = -1 * int(cipherKey)
return encryptMessage(message, decryptKey, alphabet)
def runCaesarCipherProgram():
myAlphabet="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
print(f'Alphabet: {myAlphabet}')
myAlphabet2 = getDoubleAlphabet(myAlphabet)
print(f'Alphabet2: {myAlphabet2}')
myMessage = getMessage()
print(myMessage)
myCipherKey = getCipherKey()
print(myCipherKey)
myEncryptedMessage = encryptMessage(myMessage, myCipherKey, myAlphabet2)
print(f'Encrypted Message: {myEncryptedMessage}')
myDecryptedMessage = decryptMessage(myEncryptedMessage, myCipherKey, myAlphabet2)
print(f'Decypted Message: {myDecryptedMessage}')
runCaesarCipherProgram()