Commit 6641856d by BellCodeEditor

save project

parent ad7b66de
Showing with 7 additions and 2 deletions
import random import random
w="wuasdjj@#$%^*"
index=""
# 私钥 # 私钥
key = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!" key = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!"
# 要加密语句 # 要加密语句
...@@ -12,5 +13,8 @@ for i in message: ...@@ -12,5 +13,8 @@ for i in message:
str3=random.choice(key) str3=random.choice(key)
trex=str1+str2+str3 trex=str1+str2+str3
key_massage= key_massage+trex key_massage= key_massage+trex
list_pp=list(key_massage)
index=random.randint(0,len(key_massage))
list_pp.insert(index,w)
e="".join(list_pp)
print(key_massage) print(key_massage)
\ 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