Commit 5fb6c681 by BellCodeEditor

save project

parent 28b993af
Showing with 7 additions and 4 deletions
...@@ -12,10 +12,13 @@ for i in message:# 请使用私钥key,对message进行加密 ...@@ -12,10 +12,13 @@ for i in message:# 请使用私钥key,对message进行加密
str3=random.choice(key) str3=random.choice(key)
text=i+str2+str3 text=i+str2+str3
text1=text1+text text1=text1+text
print(text1)
list1=list(text1) list1=list(text1)
list1.insert(2,jj) b=random.randint(0,len(list1))
list1.insert(10,jj) a=random.randint(0,len(list1))
list1.insert(a,jj)
list1.insert(b,jj)
text1="".join(list1) text1="".join(list1)
print(list1) print(text1)
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