Commit d2df7f71 by BellCodeEditor

save project

parent 18891748
Showing with 20 additions and 0 deletions
import random
message = input("请输入要加密语句:")
# 私钥
key = input("请输入私钥:")
# 要加密语句
q = input("请输入乱码:")
e = ""
# 请使用私钥key,对message进行加密
for i in message:
a = i
b = random.choice(key)
c = random.choice(key)
d = a+b+c
e = e+d
#d.append(e)
r = list(e)
r.insert(random.randint(0,len(r)),q)
f = "".join(r)
print(f)
\ No newline at end of file
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