91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

APP數據如何加密

九三
277
2021-02-09 11:06:58
欄目: 網絡安全

APP數據如何加密

對APP數據進行加密的方法有以下幾種

1.MD5加密

使用方法:

import hashlib

s = '你好,世界!'

s = s.encode("utf-8")

m = hashlib.md5()

m.update(s)

psw = m.hexdigest()

2.base64加密

使用方法:

import base64

s = '你好,世界!'

s = s.encode("utf-8")

s1 = base64.encodestring(s)

s2 = base64.decodestring(s1).decode("utf-8")

print("原始數據:",s2)

print("base64:",s1)

3.bcrypt加密

使用方法:

import bcrypt

paswd = "YUjun"

password = paswd.encode("utf-8")

hashed = bcrypt.hashpw(password,bcrypt.gensalt())

print(password)

print(hashed)

if bcrypt.hashpw(password,hashed) == hashed:

print("It maches!")

else:

print("It does not match:(")

4.AES加密

使用方法:

from Crypto.Cipher import AES

obj = AES.new('This is a key123', AES.MODE_CBC, 'This is an IV456')

message = "The answer is no"

ciphertext = obj.encrypt(message)

print(ciphertext)

obj2 = AES.new('This is a key123', AES.MODE_CBC, 'This is an IV456')

print(obj2.decrypt(ciphertext))

0
翁源县| 临湘市| 集贤县| 瑞金市| 金门县| 阳泉市| 盖州市| 玉屏| 江津市| 云安县| 遵化市| 丁青县| 仙居县| 广南县| 涞源县| 清丰县| 石阡县| 伊宁县| 德安县| 饶平县| 绥阳县| 金堂县| 宜川县| 琼结县| 扶风县| 大关县| 海南省| 会理县| 宁化县| 西丰县| 古浪县| 陆川县| 德安县| 平利县| 鹤峰县| 峨边| 彭州市| 扎赉特旗| 耿马| 奉新县| 玛纳斯县|