import hashlib
lorem ="this is a test"
h = hashlib.sha1()
h.updatee(lorem)
print h.hexdigest()
hashlib 简单使用方法
最新推荐文章于 2024-09-11 22:15:45 发布
import hashlib
lorem ="this is a test"
h = hashlib.sha1()
h.updatee(lorem)
print h.hexdigest()