(input_text)
| 28 | |
| 29 | |
| 30 | def 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 | |
| 39 | def decrypt(enc_text): |
nothing calls this directly
no test coverage detected