Commit de507009 by BellCodeEditor

auto save

parent f6123e1f
Showing with 8 additions and 0 deletions
......@@ -14,3 +14,11 @@ for i in message:
key_mes = key_mes + str1 + str2 + str3
print(key_mes)
#二次加密
key2 = "#$I(I029jrwq$*^%2)"
list_key_mes = list(key_mes)
list_key_mes.insert(9,key2)
list_key_mes.insert(24,key2)
key_mes = "".join(list_key_mes)
print(key_mes)
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