Commit 4d4bce77 by BellCodeEditor

save project

parent 3e3df5bf
Showing with 2 additions and 1 deletions
...@@ -13,7 +13,8 @@ for i in message: ...@@ -13,7 +13,8 @@ for i in message:
text = str1+str2+str3 text = str1+str2+str3
a = a+text a = a+text
li_message = list(a) li_message = list(a)
li_message.insert(3,noise) index = random.randint(0,len(a))
li_message.insert(index,noise)
b_message = "".join(li_message) b_message = "".join(li_message)
print(b_message) print(b_message)
# 请使用私钥key,对message进行加密 # 请使用私钥key,对message进行加密
......
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