gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 05:19:13 24 4
gpt4 key购买 nike

我遇到过这个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/

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