c++ - 我可以找到哪个 DLL BIO_Write

标签 c++ openssl

我遇到过这个BIO_Read, BIO_Write For openSSL,我想问一下,在chrome.dll或者secure32.dll里面能找到吗

只是想知道。我找不到有关它的任何有用信息。

最佳答案

I do come across this BIO_Read, BIO_Write For openSSL, I wanted to ask, can it be found inside of chrome.dll or secure32.dll.

它不在第三方库中,例如 chrome.dllsecure32.dll。它位于 OpenSSL 的 Crypto 库中(libcrypto.alibcrypto.so):

$ grep -IR BIO_write * | grep 'int ' | grep -v pod
crypto/bio/bio_lib.c:int BIO_write(BIO *b, const void *data, int dlen)
crypto/bio/bio_lib.c:int BIO_write_ex(BIO *b, const void *data, size_t dlen, size_t *written)
include/openssl/bio.h:int BIO_write(BIO *b, const void *data, int dlen);
include/openssl/bio.h:int BIO_write_ex(BIO *b, const void *data, size_t dlen, size_t *written);
...

我相信 Windows 等同于 Unix 库的是 libeay32.dll


Just wanted to know. I couldn't find any useful information about it.

查看手册页 OpenSSL man pages .选择一个版本,例如 1.0.2,然后深入研究 the crypto library .

关于c++ - 我可以找到哪个 DLL BIO_Write,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41255777/

相关文章:

c++ - for循环计数器不增加

c++ - rdynamic gcc 选项的影响/缺点

c++ - 在 C++ 中实现简单的服务器/客户端概念

openssl - 签名证书请求错误 "Expecting trusted request"

iphone - 在 Xcode 中编译失败,因为找不到链接库

c++ - 用不同的值填充数组/vector 的边缘和中心

c++ - 使用 boost program_options 和自动完成

c++ - 使用 openssl 在 C++ 中验证 RSA 签名

php - openssl_pkcs12_export() 和 openssl_x509_export() PHP 函数有什么区别?

python-3.x - 无法获取本地颁发者证书 mac OS