我使用RSA_private_decrypt:
在此错误中出现了问题error0407106b:lib(4):funct:(113):reason(107)
这意味着什么? 为什么我只有在网上工作时才有这个错误,而不是我在localhost上工作?
答案 0 :(得分:3)
您可以使用ERR_error_string
获取更具描述性的错误消息,如下所示:
ERR_load_crypto_strings();
ERR_error_string(ERR_get_error(), err);
fprintf(stderr, "%s\n", err);
确保您也包含<openssl/err.h>
。