Answer the question
In order to leave comments, you need to log in
What is missing for SSLv3_method?
Hello Lord!
I'm tinkering with SSL and ran into an error with which I don't know what to do. Reduced the code a lot to solve this problem.
#include <openssl/ssl.h>
int main(void)
{
SSLv3_method();
return 0;
}
#ifndef OPENSSL_NO_SSL3_METHOD
const SSL_METHOD *SSLv3_method(void);
const SSL_METHOD *SSLv3_server_method(void);
const SSL_METHOD *SSLv3_client_method(void);
#endif
Answer the question
In order to leave comments, you need to log in
Probably, modern versions of OpenSSL are compiled without using SSLv3 at all, as a result, there is no such method in the interface. Look up which method to use instead - maybe TLSv1_method() (for method naming logic).
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question