このコードは次のサイトから取得されます:http://code.activestate.com/recipes/577090-file-encryption-using-stream-cipher/
import sys
import random
if len(sys.argv) != 4:
print "Usage: encdec_.py longintkey [path]filename1 [path]filename2"
sys.exit()
random.seed(long(sys.argv[1])) # key
f1 = open( sys.argv[2], "rb")
bytearr = map (ord, f1.read () )
f2 = open( sys.argv[3], "wb" )
for i in range(len(bytearr)):
f2.write(chr(bytearr[i] ^ random.randint(0, 255)))
f1.close()
f2.close()
このコードは?を使用して並列化できますmultiprocessing
か?