import hashlib obj = hashlib.md5(bytes('adfasfasdfsfasf',encoding = 'utf-8'))
obj.update(bytes('123',encoding='utf-8'))
result = obj.hexdigest()
print(result)
相关文章
- 12-13我的spring-boot-study之mybatis的应用
- 12-13设计模式之桥接模式
- 12-13信息的表示和处理之信息存储
- 12-13分布式存储之GlusterFS
- 12-13Kubernetes 持久化存储之GlusterFS
- 12-13python函数式编程——偏函数
- 12-13VS2015 之 多行缩进
- 12-13python中的str.strip()的用法
- 12-13python学习总结1
- 12-13Python中定义函数时参数有默认值的小陷阱