Commit 3246ae71 by BellCodeEditor

save project

parent c49a4746
Showing with 5 additions and 12 deletions
import random import random
# 私钥 m=['诺', '依', ',','周', '末', '一', '起', '去', '看', '动', '漫', '展', '吧', '!']
a = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!" a="".join(m)
# 要加密语句 print(a)
m= "诺依,周末一起去看动漫展吧!"
s3=""
# 请使用私钥key,对message进行加密
for i in m:
s=i
s1=random.choice(a)
s2=s+s1
s3=s3+s2
print(s3)
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