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

Function readAndDecryptAndSave

EncryptionTool.py:86–91  ·  view source on GitHub ↗
(inp_file, out_file)

Source from the content-addressed store, hash-verified

84
85
86def 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

Callers

nothing calls this directly

Calls 2

readAndDecryptFunction · 0.85
closeMethod · 0.45

Tested by

no test coverage detected