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

Function decrypt

EncryptionTool.py:39–45  ·  view source on GitHub ↗
(enc_text)

Source from the content-addressed store, hash-verified

37
38
39def decrypt(enc_text):
40 col_values = []
41 for enc in enc_text:
42 current = int(decryptChar(enc))
43 current = chr(current)
44 col_values.append(current)
45 return col_values
46
47
48def readAndDecrypt(filename):

Callers

nothing calls this directly

Calls 2

decryptCharFunction · 0.85
appendMethod · 0.45

Tested by

no test coverage detected