Commit 22b8e201 by BellCodeEditor

auto save

parent e7aa400b
Showing with 5 additions and 0 deletions
......@@ -5,6 +5,7 @@ key = "abcdefgh使用编程实现位移替换加密,制作密码机关真是
# 要加密语句
message = "诺依,周末一起去看动漫展吧!"
message_key=""
GRZF="port:@#$%^&"
# 请使用私钥key,对message进行加密
for i in message:
......@@ -14,4 +15,8 @@ for i in message:
text=str1+str2+str3
message_key=message_key+text
print(message_key)
key_message=list(message_key)
key_message.insert(5,GRZF)
key_message_="".join(key_message)
print(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