中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
平顺县| 武川县| 社旗县| 沁源县| 安庆市| 泸定县| 周宁县| 锡林浩特市| 农安县| 那曲县| 佛山市| 宁陵县| 错那县| 同江市| 六盘水市| 治县。| 彭阳县| 鹤峰县| 河西区| 沙坪坝区| 独山县| 布尔津县| 汕尾市| 盈江县| 武乡县| 舟曲县| 正镶白旗| 库车县| 芒康县| 上林县| 洪江市| 茌平县| 柳河县| 石家庄市| 海晏县| 德昌县| 平武县| 新沂市| 毕节市| 长海县| 汉阴县|