Commit 2ca0ae51 by BellCodeEditor

save project

parent d223b699
Showing with 19 additions and 0 deletions
import random
# 私钥
key = "q!@#$%^&*azpl,wsxokmedcij@#$(*&%nrfvuhb@#$^t*&^%$$%^&^%$##$^&^%$##$%^ygqw#$%^&ertyuiopa#$%^sd#$%^*&%fghjklzxcvbnm/1.213.0.45"
# 要加密语句
message = "诺依,周末一起去看动漫展吧!"
key_message = ""
# 请使用私钥key,对message进行加密
for i in message:
str1 = i
str2 = random.choice(key)
str3 = random.choice(key)
next = str1+str2str3
key_message = key_message +next
list_message = list(key_message)
list_message.insert(5,noise)
result_message = "".join(list_message)
print(key_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