2012-09-15 43 views

回答

3

您可以使用ERR_error_string獲得更描述性錯誤消息,像這樣:

ERR_load_crypto_strings(); 
ERR_error_string(ERR_get_error(), err); 
fprintf(stderr, "%s\n", err); 

請務必包括<openssl/err.h>爲好。

相關問題