I need to use this function
EVP_get_digestbyname(OBJ_nid2sn(i));
Whenever I call this function it returns NULL only .. how to fix this problem?
My value for i is 65 (RSA-SHA1).
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Did you call
first (ideally when initializing your application) ? This ensures that the algorithms and error messages get properly loaded. After that your call should succeed (cf. the doc on this subject).