摘要: # coding = utf-8 # 字符串异或加密 import random choice = input('加密(1)还是解谜(2)?') def encode(str1, key): #设置秘钥种子 random.seed(key) str2 = '' for c in str1: str2 += str(ord(c) ^ random... 阅读全文
posted @ 2018-08-10 21:06 找回失去的自我 阅读(2273) 评论(0) 推荐(0)