MCPcopy Index your code
hub / github.com/geekcomputers/Python / encrypt

Function encrypt

EncryptionTool.py:30–36  ·  view source on GitHub ↗
(input_text)

Source from the content-addressed store, hash-verified

28
29
30def encrypt(input_text):
31 col_values = []
32 for inp in input_text:
33 current = ord(inp)
34 current = encryptChar(current)
35 col_values.append(current)
36 return col_values
37
38
39def decrypt(enc_text):

Callers

nothing calls this directly

Calls 2

encryptCharFunction · 0.85
appendMethod · 0.45

Tested by

no test coverage detected