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

Function readAndEncryptAndSave

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

Source from the content-addressed store, hash-verified

76
77
78def 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
86def readAndDecryptAndSave(inp_file, out_file):

Callers

nothing calls this directly

Calls 2

readAndEncryptFunction · 0.85
closeMethod · 0.45

Tested by

no test coverage detected