Commit e599b06a by BellCodeEditor

save project

parent 2cf4ece8
Showing with 3 additions and 3 deletions
......@@ -7,13 +7,13 @@ message = "诺依,周末一起去看动漫展吧!"
key_message=""
# 请使用私钥key,对message进行加密
for i in message:
a=message[i]
a=i
b=random.choice(key)
c=random.choice(key)
d=a+b+c
key_message=key_message+d
list_d=list(d)
i=random.randint(0,len(d))
list_d=list(key_message)
i=random.randint(0,len(key_message))
list_d.insert(i,noise)
r="".join(list_d)
print(r)
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 sign in to comment