gpt4 book ai didi

c - 在 openssl/sha.h 中声明但在共享库中找不到的函数

转载 作者:太空宇宙 更新时间:2023-11-04 01:49:51 27 4
gpt4 key购买 nike

我已尝试将我的 C 程序链接到 libssl.so,但链接器未能在该库中找到头文件中确实存在的函数。

Makefile目标代码:

$(CC) -o $@ $^ $(CFLAGS) -lssl -lmagic

输出:

...
/usr/bin/ld: obj/signature.o: undefined reference to symbol 'SHA256_Init@@OPENSSL_1_1_0'
//usr/lib/x86_64-linux-gnu/libcrypto.so.1.1: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
...

该函数是 SHA256_Init(),它存在于包含在源文件中的 openssl/sha.h 中。

我在 Debian 9 上。我安装了以下软件包:libssl1.0.0libssl1.0.2libssl1.1libssl-dev (1.1.0).

$ la /usr/lib/x86_64-linux-gnu/libssl*
-rw-r--r-- root root 357024 /usr/lib/x86_64-linux-gnu/libssl3.so
-rw-r--r-- root root 738444 /usr/lib/x86_64-linux-gnu/libssl.a
lrwxrwxrwx root root 13 /usr/lib/x86_64-linux-gnu/libssl.so -> libssl.so.1.1
-rw-r--r-- root root 395176 /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0
-rw-r--r-- root root 431232 /usr/lib/x86_64-linux-gnu/libssl.so.1.0.2
-rw-r--r-- root root 442920 /usr/lib/x86_64-linux-gnu/libssl.so.1.1

我做错了什么以及如何解决这个问题?

最佳答案

OpenSSL 分为 2 个库,libssl 和 libcrypto,这些函数存在于 libcrypto 中,因此您不需要链接到 libssl。使用

 -lcrypto

您还应该阅读此 documentation了解更多信息,例如如何正确初始化 libcrypto

关于c - 在 openssl/sha.h 中声明但在共享库中找不到的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45889307/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com