(enc_text)
| 37 | |
| 38 | |
| 39 | def 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 | |
| 48 | def readAndDecrypt(filename): |
nothing calls this directly
no test coverage detected