Commit 6df3ac0f by BellCodeEditor

save project

parent 666e1838
Showing with 6 additions and 2 deletions
...@@ -7,7 +7,7 @@ message = "诺依,周末一起去看动漫展吧!" ...@@ -7,7 +7,7 @@ message = "诺依,周末一起去看动漫展吧!"
key_message = "" key_message = ""
# 请使用私钥key,对message进行加密 # 请使用私钥key,对message进行加密
noise = "pk fhic*& ^%$$V H GG CC acaH g#% HJDG V*)& R#@! # ^*() *^#@ #kbv svwkvh " noise = "pk fhic*& ^%$$V H GG CCH g#% HJDG V*)& R#@! # ^*() *^#@ #kbv svwkvh "
for i in message: for i in message:
str1 = i str1 = i
str2 = random.choice(key) str2 = random.choice(key)
...@@ -16,6 +16,9 @@ for i in message: ...@@ -16,6 +16,9 @@ for i in message:
key_message = key_message + text key_message = key_message + text
list_message = list(key_message) list_message = list(key_message)
list_message.insert(5, noise)
index = random.randint(0,len(key_message))
list_message.insert(index, noise)
result_message = "".join(list_message) result_message = "".join(list_message)
print(result_message) print(result_message)
\ No newline at end of file
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