侧边栏壁纸
博主头像
cn2linux博主等级

行动起来,活在当下

  • 累计撰写 128 篇文章
  • 累计创建 1 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

草稿:Python使用SHA1加密

函数示例:
import hashlib

def str_encrypt(str):
    """
    使用sha1加密算法,返回str加密后的字符串
	"""

    sha = hashlib.sha1(str)
    encrypts = sha.hexdigest()
    return encrypts

0

评论区