(inp_file, out_file)
| 84 | |
| 85 | |
| 86 | def readAndDecryptAndSave(inp_file, out_file): |
| 87 | dec_list = readAndDecrypt(inp_file) |
| 88 | output = open(out_file, "w") |
| 89 | for dec in dec_list: |
| 90 | output.write(str(dec)) |
| 91 | output.close() |
| 92 | |
| 93 | |
| 94 | # encryption |
nothing calls this directly
no test coverage detected