Commit be1453f1 by BellCodeEditor

auto save

parent e3160ea5
Showing with 26 additions and 0 deletions
import random
# 私钥
key = "有啊傻逼傻逼失败鼠标顺便三百 "
# 要加密语句
message = "都1是什3么目5的s你7a什么9地!方是#d反!"
b=""
# 请使用私钥key,对message进行加密
p="!@#$%^&*123456789"
for i in message:
str=i
str1=random.choice(key)
str2=random.choice(key)
a=str+str1+str2
b = b +a
s=list(b)
i=random.randint(0,len(s))
s.insert(i,p)
d="".join(s)
print(d)
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