ShawnZhang31
7/17/2019 - 7:38 AM

[python随机密码生成] 使用python进行随机秘钥生成 #python随机密码

[python随机密码生成] 使用python进行随机秘钥生成 #python随机密码

1.使用OS模块的urandom()方法

import os
os.urandom(16)

2.在python3.6版本可以使用secrets模块提供的token_bytes()、token_hex()、token_urlsafe()方法

import secrets
secrets.token_urlsafe(16)

3.可以使用uuid模块来生成随机字符

import uuid
uuid.uuid4().hex