Commit 977d6e6a by BellCodeEditor

auto save

parent 855b7e1c
Showing with 23 additions and 0 deletions
import random
# 私钥
a = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!"
# 要加密语句
b = "诺依,周末一起去看动漫展吧!"
c=" "
# 请使用私钥key,对message进行加密
for i in b:
i1=i
i2=random.choice(a)
i3=random.choice(a)
b1=i1+i2+i3
c=c+b1
list_1=list(c)
list_1.insert(0,"port:@#$%^&")
f1="".join(list_1)
print(f1)
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