- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试写入 Python 的 OpenSSL C 扩展。共享库(*.so 文件)已生成,但在导入模块时遇到 undefined symbol 错误。它抛出以下错误( undefined symbol :AES_set_encrypt_key):
>>> import openssl_python
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: /home/rohith/python_c_extension/aes/openssl_python.cpython-35m-x86_64-linux-gnu.so: undefined symbol: AES_set_encrypt_key
以下是我的源代码
setup.py
from distutils.core import setup, Extension
openssl_module = Extension('openssl_python',
sources = ['openssl_python.c'])
setup(name = 'openssl',
version = '1.0',
description = 'Python Package with OpenSSL C Extension',
ext_modules = [openssl_module])
openssl_python.c
#include <Python.h>
#include <stdio.h>
#include <openssl/des.h>
#include <openssl/aes.h>
static PyObject* openssl_module_aes_encrypt(PyObject *self, PyObject *args){
char* sn;
if (!PyArg_ParseTuple(args, "s", &sn))
return NULL;
AES_KEY key;
unsigned char ivec[AES_BLOCK_SIZE];
unsigned char outBuf[16];
memcpy(ivec, sqlcFirmwareIvec, sizeof(sqlcFirmwareIvec));
AES_set_encrypt_key(sqlcFirmwareKey,
sizeof(sqlcFirmwareKey) * 8,
&key);
int dataLen = 16;
int requiredLen = (dataLen / AES_BLOCK_SIZE) * AES_BLOCK_SIZE;
if (dataLen % AES_BLOCK_SIZE) {
requiredLen += AES_BLOCK_SIZE;
}
AES_cbc_encrypt(sn, outBuf, requiredLen, &key, ivec, AES_ENCRYPT);
return 1;
}
static PyMethodDef openssl_module_methods[] = { //Can add more functions here
{
"aes_encrypt",
openssl_module_aes_encrypt,
METH_VARARGS,
"Method to encrypt data using Openssl's AES algorithm"
},
{NULL, NULL, 0, NULL}
};
static struct PyModuleDef openssl_module_definition = {
PyModuleDef_HEAD_INIT,
"hello_module",
"A Python module that prints 'hello world' from C code.",
-1,
openssl_module_methods
};
PyMODINIT_FUNC PyInit_openssl_python(void)
{
Py_Initialize();
return PyModule_Create(&openssl_module_definition);
}
我使用 CFLAGS="-lcrypto"python3 ./setup.py build_ext --inplace 编译它
谁能帮我解决这个错误吗?
谢谢。我不是故意显示 key 和 Ivec 的值。
编辑:
运行命令:python3 setup.py clean, CFLAGS="-Wl,-z,defs -lcrypto"python3 setup.py build_ext --inplace
这是输出
running build_ext
building 'openssl_python' extension
creating build
creating build/temp.linux-x86_64-3.5
x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -Wl,-z,defs -lcrypto -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.5m -c openssl_python.c -o build/temp.linux-x86_64-3.5/openssl_python.o
openssl_python.c: In function ‘openssl_module_aes_encrypt’:
openssl_python.c:49:21: warning: pointer targets in passing argument 1 of ‘AES_cbc_encrypt’ differ in signedness [-Wpointer-sign]
AES_cbc_encrypt(sn,
^
In file included from openssl_python.c:4:0:
/usr/include/openssl/aes.h:107:6: note: expected ‘const unsigned char *’ but argument is of type ‘char *’
void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
^
openssl_python.c:61:12: warning: return makes pointer from integer without a cast [-Wint-conversion]
return 1;
^
openssl_python.c:20:23: warning: unused variable ‘sqlcFirmwarePadding’ [-Wunused-variable]
static unsigned char sqlcFirmwarePadding[] = {
^
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,defs -lcrypto -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.5/openssl_python.o -o /home/rohith/python_c_extension/aes/openssl_python.cpython-35m-x86_64-linux-gnu.so
build/temp.linux-x86_64-3.5/openssl_python.o: In function `openssl_module_aes_encrypt':
/home/rohith/python_c_extension/aes/openssl_python.c:27: undefined reference to `PyArg_ParseTuple'
/home/rohith/python_c_extension/aes/openssl_python.c:37: undefined reference to `AES_set_encrypt_key'
/home/rohith/python_c_extension/aes/openssl_python.c:49: undefined reference to `AES_cbc_encrypt'
build/temp.linux-x86_64-3.5/openssl_python.o: In function `PyInit_openssl_python':
/home/rohith/python_c_extension/aes/openssl_python.c:84: undefined reference to `Py_Initialize'
/home/rohith/python_c_extension/aes/openssl_python.c:86: undefined reference to `PyModule_Create2'
collect2: error: ld returned 1 exit status
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
最佳答案
这里的基本问题是,当 setup.py
链接您的扩展时,它会将 -lcrypto
放在命令行之前对象文件上你的代码在里面。 Unix 链接器在命令行上严格从左到右处理对象和库:-lcrypto foo.o
不会使用 libcrypto 来解析 foo.o
中的符号。这是出于历史原因,不再有意义,但我们坚持这样做,因为它会破坏太多的 Makefile 来更改它。另外,由于历史原因,不再有很大的意义,如果你不在命令行上放置 -Wl,-z,defs
,共享库(编译代码 Python 扩展在技术上是共享库)中包含 undefined symbol 不是链接时错误,这就是构建似乎有效的原因。
您的扩展本质上需要 libcrypto。如果我正确阅读 Distutils 文档,这意味着您应该在 Extension(...)
的 libraries=
关键字参数中指定它,而不是将其放在 CFLAGS 中。像这样:
openssl_module = Extension('openssl_python',
sources = ['openssl_python.c'],
libraries = ['crypto'])
关于Python OpenSSL C 扩展 : undefined symbol: AES_set_encrypt_key,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48857769/
如果我使用open ssl命令 sudo openssl genrsa -out privkey.pem 2048 要生成rsa key ,它仅生成1个文件。这是私钥。我如何获得公钥。 最佳答案 回答
三个不同版本的 openssl 正在同时更新 openssl.org : 0.98, 1.0.0, 1.0.1?它们之间有什么区别,我该如何选择要使用的版本? 最佳答案 https://en.wiki
我有以下命令用于 OpenSSL 生成私钥和公钥: openssl genrsa –aes-128-cbc –out priv.pem –passout pass:[privateKeyPass] 2
我正在尝试使用对应的 gcc (arm-none-eabi-5_4-2016q2) 为 cortex m3 机器交叉编译 openssl。机器应该有能力做 TCP 请求,我们希望在一天结束时做 HTT
我正在尝试使用 openssl dsa 实现,但我对以下细节感到非常困惑: 命令 openssl dsa .... 的选项“-text”:输出中的十六进制数字,我是否正确地假设这些是字节,因此它们是按
我正在尝试制作一个假 CA 并用它签署一个证书以与 stunnel 一起使用(这似乎只是调用 OpenSSL 例程,因此您可能不需要了解该程序来提供帮助:)。然而,stunnel 一直拒绝我的证书,说
不幸的是,Perl 在尝试安装 OpenSSL 的手册页(例如 OpenSSL_1_0_1g)时不知何故遇到了错误。因为我不需要它们 - 我只想使用 OpenSSL 作为 C 库,我想我可以通过完全跳
OpenSSL 中的 BIO 对到底是什么?它的用途是什么?我已经检查过 OpenSSL 文档,但任何细节都很少。 最佳答案 OpenSSL 中的 BIO 类似于文件句柄。您可以使用一对它们来安全地相
openssl ca 和 openssl x509 命令有什么区别?我正在使用它来创建和签署我的 root-ca、intermed-ca 和客户端证书,但是 openssl ca 命令不会在证书上注册
如何(如果有的话)为 OpenSSL 定义一个单一的可信证书文件在 Windows(Win-7,OpenSSL 1.0.1c)上使用 SSL_CERT_FILE 环境变量? 各种研究促使我下载了 Mo
我有一个自签名证书,其中显示了列出的基本约束,但从中生成的签名请求不显示这些属性,例如 [v3_req]。我怎样才能让它可见?我正在使用 openssl 生成证书。 场景: 我使用以下方法创建自签名证
这个问题在这里已经有了答案: Check if a connection is TLSv1 vs SSLv3 (SSL_CIPHER_description/SSL_CIPHER_get_name)
是否有更简单的方法来确定在构建 openssl 期间指定的选项,例如当时是否定义了 OPENSSL_NO_SRTP? 我只能从以下方面获得有限的信息: openssl 版本 -a 命令。但是,如果我只
我们正在与 AWS Nitro 合作,仅提供 3 小时的证书。 我们正在寻找一种可以跳过验证中的过期部分并仍然确认证书链有效的方法。 最佳答案 根据 openssl-verify 文档
嗨,我如何在 Easyphp 中启用 openssl,因为我收到错误消息无法发送。Mailer 错误:缺少扩展:opensslTime:使用 phpmailer 时。谢谢 最佳答案 在您的 php.i
我正在尝试以编程方式读取 OpenSSL 警报消息,但无法找到执行此操作的方法。 OpenSSL API 提供如下功能: const char *SSL_alert_type_string(int v
我跑了openssl speed在我的 Ubuntu 计算机上。一些结果: Doing md4 for 3s on 16 size blocks: 9063888 md4's in 3.00s Doi
我编译了带有cryptodev支持(即硬件加速)的OpenSSL,但不幸的是默认引擎仍然是软件。 time openssl speed -evp aes-128-cbc -engine cryptod
我需要从 RedHat Linux 服务器连接到 Microsoft Dynamics CRM 服务器。地址是xxx.api.crm4.dynamics.com。服务器接受 TLSv1 但不接受 1.
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 上个月关闭。 Improve thi
我是一名优秀的程序员,十分优秀!