6

在 IDLE 和 Python 版本 3.3.2 中,我尝试像这样调用 python 模块:

hash2 = crypt(word, salt)

我将它导入到我的程序顶部,如下所示:

from crypt import *

我得到的结果如下:

Traceback (most recent call last):
  File "C:\none\of\your\business\adams.py", line 10, in <module>
    from crypt import *
  File "C:\Python33\lib\crypt.py", line 3, in <module>
    import _crypt
ImportError: No module named '_crypt'

但是,当我adams.py在 Ubuntu 中使用 Python 2.7.3 执行相同的文件时,它可以完美执行 - 没有错误。

我尝试了以下方法来解决我的 Windows 和 Python 3.3.2 的问题(尽管我确定操作系统不是问题,Python 版本或我对语法的使用是问题):

  1. 将目录中的Python33目录重命名Liblib
  2. crypt.py将in重命名lib_crypt.py. 然而,事实证明整个crypt.py模块也依赖于一个名为的外部模块_crypt.py
  3. 浏览互联网以下载任何适合远程模仿的内容_crypt.py

这不是 Python,对吧?是我……(?)我正在使用语法来导入和使用在 2.7.3 中可接受但在 3.3.2 中不可接受的外部模块。还是我在 3.3.2 中发现了一个错误?

4

4 回答 4

10

更好的方法是使用 python passlib 模块生成兼容的 linux 密码的 crypt 散列(我认为这是你最可能想要的)。我已经通过在 rootpw 和用户属性中注入生成的散列密码值来使用 Kickstart 文件验证了这一点。您需要的功能是:

from passlib.hash import md5_crypt as md5
from passlib.hash import sha256_crypt as sha256
from passlib.hash import sha512_crypt as sha512

md5_passwd = md5.encrypt(passwd, rounds=5000, implicit_rounds=True)
sha256_passwd = sha256.encrypt(passwd, rounds=5000, implicit_rounds=True)
sha512_passwd = sha512.encrypt(passwd, rounds=5000, implicit_rounds=True)

第一个参数是不言自明的。
第二个和第三个参数与规范合规性有关,并且需要生成与 linux 兼容的密码哈希*** (请参阅:Passlib:SHA256 规范、格式和算法

***注意:使用 SHA512 进行测试,但我看不出为什么它不能与 SHA256 或 MD5 一起使用。

于 2015-02-18T02:39:45.650 回答
5

我认为这是因为cryptUnix Specific Service

就在文档的顶部crypt

34.5。crypt — 检查 Unix 密码的函数

平台:Unix

于 2013-11-09T16:21:24.897 回答
3

我在这里找到了一个名为 fcrypt 的替代模块:

它很旧,所以不要指望 python3 兼容。

于 2014-01-14T04:47:59.717 回答
-3

您可以在 Windows PC 上为此目的使用“bcrypt”,这样做是因为 crypt 只是一个 UNIX 模块,因此在 Windows 中不容易兼容。去bcrypt

import bcrypt
password = b"passit" #passit is the word to encrypt
pass = bcrypt.hashpw(password, bcrypt.gensalt())
print(b)

这将完成您的工作。如需进一步参考,请访问: http: //passlib.readthedocs.io/en/stable/install.html

https://pypi.python.org/pypi/bcrypt/2.0.0

于 2017-10-14T10:11:43.057 回答