码迷,mamicode.com
首页 > 其他好文 > 详细

易用常用的小知识点

时间:2019-08-08 17:36:22      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:知识   import   digest   val   byte   对象   bsp   hash   一个   

 

一、关于字符串转为二进制数据的方法

方法:

b‘hello‘     与   ‘hello’.encode(‘utf-8‘)   作用相同

import hashlib

md = hashlib.md5()  # 生成一个造密文的对象
val = 啦啦啦啦   # 加盐处理
md.update(val.encode(utf-8))

# md.update(‘hello‘.encode(‘utf-8‘))  # 将字符串转为二进制形式
md.update(bhello)  # Bytes类型也就是二进制形式,  b‘hello‘  与 ‘hello‘.encode(‘utf-8‘) 作用是一样的

res = md.hexdigest()
print(res)

 

易用常用的小知识点

标签:知识   import   digest   val   byte   对象   bsp   hash   一个   

原文地址:https://www.cnblogs.com/qinsungui921112/p/11322442.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!