Commit 25a69810 by sikang

update

parent d993e80e
......@@ -20,10 +20,10 @@ def decrypt(path):
line = line.replace("</string>", "")
str_name = line.split(">")[0] + ">"
str = line.split(">")[1]
str_value = line.split(">")[1]
randStr = str(random.randint(0, 1000000)) + "*-*"
line = str_name + randStr + base64.b64encode(randStr + str) + "</string>"
line = str_name + randStr + base64.b64encode(randStr + str_value) + "</string>"
print(line)
f_w.write(line)
# print("done\n")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment