Commit 691e484c by BellCodeEditor

save project

parent bf9c9f12
Showing with 6 additions and 3 deletions
...@@ -11,9 +11,12 @@ for i in message: ...@@ -11,9 +11,12 @@ for i in message:
str3 = random.choice(key) str3 = random.choice(key)
a = str1 + str2 + str3 a = str1 + str2 + str3
sb = sb + a sb = sb + a
print(sb) print(a)
b = list(sb)
print(b)
b.insert(0,1234567890)
c = ''.join(b)
print(c)
# 请使用私钥key,对message进行加密 # 请使用私钥key,对message进行加密
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