Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 RSA_private_decrypt 发生了这个错误:
错误0407106b:库(4):功能:(113):原因(107)
这是什么意思?为什么我只有在网络上工作时才会出现此错误,而不是在本地主机上工作时才会出现此错误?
您可以使用ERR_error_string来获取更具描述性的错误消息,如下所示:
ERR_error_string
ERR_load_crypto_strings(); ERR_error_string(ERR_get_error(), err); fprintf(stderr, "%s\n", err);
确保你也包括在内<openssl/err.h>。
<openssl/err.h>