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

Function encryptMessage

src/gamesbyexample/vigenerecipher.py:63–65  ·  view source on GitHub ↗

Encrypt the message using the key.

(message, key)

Source from the content-addressed store, hash-verified

61
62
63def encryptMessage(message, key):
64 """Encrypt the message using the key."""
65 return translateMessage(message, key, 'encrypt')
66
67
68def decryptMessage(message, key):

Callers 1

mainFunction · 0.70

Calls 1

translateMessageFunction · 0.70

Tested by

no test coverage detected