python 使用这一个函数在python中运行sha512哈希文本。为什么sha512?为什么在做这件事的整个过程中你会做得更少

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用这一个函数在python中运行sha512哈希文本。为什么sha512?为什么在做这件事的整个过程中你会做得更少相关的知识,希望对你有一定的参考价值。

def checksum(text):
    """ produces a sha512 hash over the given text """
    from hashlib import sha512
    from base64 import b64encode as b64e
    return(b64e(sha512(text).digest()))

以上是关于python 使用这一个函数在python中运行sha512哈希文本。为什么sha512?为什么在做这件事的整个过程中你会做得更少的主要内容,如果未能解决你的问题,请参考以下文章

关于python函数形参实参和变量作用域的分析

使用 python 运行命令行操作

【python】hash函数问题

在单个AWS Lambda中使用两个python函数boto3

在 python 2 上释放 C 扩展模块时运行函数

Python函数参数详解