前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >python hashlib_python import hashlib出现问题

python hashlib_python import hashlib出现问题

作者头像
全栈程序员站长
发布2022-07-01 13:01:58
发布2022-07-01 13:01:58
1.1K0
举报

大家好,又见面了,我是你们的朋友全栈君。

import hashlib时出现如下问题:

>>> import hashlib

ERROR:root:code for hash md5 was not found.

Traceback (most recent call last):

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 141, in

globals()[__func_name] = __get_hash(__func_name)

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 91, in __get_builtin_constructor

raise ValueError(‘unsupported hash type %s’ % name)

ValueError: unsupported hash type md5

ERROR:root:code for hash sha1 was not found.

Traceback (most recent call last):

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 141, in

globals()[__func_name] = __get_hash(__func_name)

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 91, in __get_builtin_constructor

raise ValueError(‘unsupported hash type %s’ % name)

ValueError: unsupported hash type sha1

ERROR:root:code for hash sha224 was not found.

Traceback (most recent call last):

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 141, in

globals()[__func_name] = __get_hash(__func_name)

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 91, in __get_builtin_constructor

raise ValueError(‘unsupported hash type %s’ % name)

ValueError: unsupported hash type sha224

ERROR:root:code for hash sha256 was not found.

Traceback (most recent call last):

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 141, in

globals()[__func_name] = __get_hash(__func_name)

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 91, in __get_builtin_constructor

raise ValueError(‘unsupported hash type %s’ % name)

ValueError: unsupported hash type sha256

ERROR:root:code for hash sha384 was not found.

Traceback (most recent call last):

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 141, in

globals()[__func_name] = __get_hash(__func_name)

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 91, in __get_builtin_constructor

raise ValueError(‘unsupported hash type %s’ % name)

ValueError: unsupported hash type sha384

ERROR:root:code for hash sha512 was not found.

Traceback (most recent call last):

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 141, in

globals()[__func_name] = __get_hash(__func_name)

File “/usr/local/python3.2/lib/python3.2/hashlib.py”, line 91, in __get_builtin_constructor

raise ValueError(‘unsupported hash type %s’ % name)

ValueError: unsupported hash type sha512

>>> import _hashlib

Traceback (most recent call last):

File “”, line 1, in

ImportError: No module named _hashlib

>>> h = haslib.new(“md5”)

Traceback (most recent call last):

File “”, line 1, in

NameError: name ‘haslib’ is not defined

>>> import hashlib

>>> dir(hashlib)

[‘__all__’, ‘__builtins__’, ‘__cached__’, ‘__doc__’, ‘__file__’, ‘__get_builtin_constructor’, ‘__name__’, ‘__package__’, ‘algorithms_available’, ‘algorithms_guaranteed’, ‘logging’, ‘new’]

>>> hashlib.algorithms_available

{‘sha1’, ‘sha224’, ‘sha384’, ‘sha256’, ‘sha512’, ‘md5’}

安装过openssh后就OK了

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/131364.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档