Commit 56ff4e17 by BellCodeEditor

save project

parent 18891748
Showing with 25 additions and 0 deletions
import random
# 私钥
key = "有啊傻逼傻逼失败鼠标顺便三百 "
# 要加密语句
message = input("wssbbb")
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(b))
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