如何重用 hashlib.md5 的实例
如何在 python 中刷新(或重置)并重用 hashlib.md5 的实例?如果我在脚本中执行多个哈希操作,每次使用 hashlib.md5 的新实例似乎效率很低,但从 python 文档中我没有看到任何刷新或重置实例的方法。
How do you flush (or reset) and reuse an instance of hashlib.md5 in python? If I am performing multiple hashing operations in a script, it seems inefficient to use a new instance of hashlib.md5 each time, but from the python documentation I don't see any way to flush or reset the instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
为什么你认为制作新的效率低下?它是一个小对象,并且对象一直在创建和销毁。使用新的,不用担心。
Why do you think it's inefficient to make a new one? It's a small object, and objects are created and destroyed all the time. Use a new one, and don't worry about it.