MCPcopy Create free account
hub / github.com/asweigart/PythonStdioGames / decryptMessage

Function decryptMessage

src/gamesbyexample/vigenerecipher.py:68–70  ·  view source on GitHub ↗

Decrypt the message using the key.

(message, key)

Source from the content-addressed store, hash-verified

66
67
68def decryptMessage(message, key):
69 """Decrypt the message using the key."""
70 return translateMessage(message, key, 'decrypt')
71
72
73def translateMessage(message, key, mode):

Callers 1

mainFunction · 0.70

Calls 1

translateMessageFunction · 0.70

Tested by

no test coverage detected