(inp_file, out_file)
| 76 | |
| 77 | |
| 78 | def readAndEncryptAndSave(inp_file, out_file): |
| 79 | enc_list = readAndEncrypt(inp_file) |
| 80 | output = open(out_file, "w") |
| 81 | for enc in enc_list: |
| 82 | output.write(str(enc) + " ") |
| 83 | output.close() |
| 84 | |
| 85 | |
| 86 | def readAndDecryptAndSave(inp_file, out_file): |
nothing calls this directly
no test coverage detected