溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python實現(xiàn)字符串加密成純數(shù)字

發(fā)布時間:2020-08-21 16:53:29 來源:腳本之家 閱讀:282 作者:狡猾的皮球 欄目:開發(fā)技術(shù)

本文實例為大家分享了python實現(xiàn)字符串加密成純數(shù)字的具體代碼,供大家參考,具體內(nèi)容如下

說明: 

該加密算法僅僅是做一個簡單的加密,安全性就不談了,哈哈. 

算法流程:

1.字符串以utf8編碼成字節(jié)數(shù)組
2.把每一個字節(jié)轉(zhuǎn)換成十進(jìn)制數(shù)字字符串('0'~'255')
3.在每個十進(jìn)制數(shù)字字符串之前加上一個長度位(長度位固定只占1個字符)
4.進(jìn)行數(shù)字替換,例如:(0-1,1-9,2-3,3-8,4-7,5-6,6-2,7-4,8-5,9-0) 

代碼實現(xiàn):

加密:

#加密
def encrypt(srcStr,password='1938762450'):
 #將字符串轉(zhuǎn)換成字節(jié)數(shù)組
 data=bytearray(srcStr.encode('utf-8'))
 #把每個字節(jié)轉(zhuǎn)換成數(shù)字字符串
 strList=[str(byte) for byte in data]
 #給每個數(shù)字字符串前面加一個長度位
 strList=[str(len(s))+s for s in strList]
 #進(jìn)行數(shù)字替換
 for index0 in range(len(strList)):
  tempStr = ""
  for index in range(len(strList[index0])):
   tempStr+=password[int(strList[index0][index])]
  strList[index0]=tempStr
 return "".join(strList)

解密:

#解密
def decrypt(srcStr,password='1938762450'):
 #數(shù)字替換還原
 tempStr=""
 for index in range(len(srcStr)):
  tempStr+=str(password.find(srcStr[index]))
 #去掉長度位,還原成字典
 index=0
 strList=[]
 while True:
  #取長度位
  length=int(tempStr[index])
  #取數(shù)字字符串
  s=tempStr[index+1:index+1+length]
  #加入到列表中
  strList.append(s)
  #增加偏移量
  index+=1+length
  #退出條件
  if index>=len(tempStr):
   break
 data=bytearray(len(strList))
 for i in range(len(data)):
  data[i]=int(strList[i])
 return data.decode('utf-8')

測試:

if __name__ == '__main__':
 ret=encrypt('id:123,time:7200,key:123456789987654321','1938762450')
 print('密文:',ret)
 
 ret=decrypt(ret,'1938762450')
 print('原文:',ret)

運行結(jié)果:

python實現(xiàn)字符串加密成純數(shù)字

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI