for file in os.listdir(inDir):
            if file.endswith(".cpp"):
                print "processing %s -> %s" %(inDir+"/"+file, outDir+"/"+file)
                process_file(inDir+"/"+file, outDir+"/"+file, key, encrypter)