When I use openssl to create an ssl base server-client program, the SSL_accept in the server side and the SSL_connect in the client side are both return an error named 'SSL_ERROR_SSL', how can I fix this?
2
votes
You might need to add a bit more info here and some code.
- mathematician1975
I used ERR_print_errors_fp(stderr), the ssl library says 'SSL routines:SSL3_GET_CLIENT_HELLO:no shared cipher', how can I deal with this?
- 小武哥
What cipher list did you initialize the client SSL_CTX with? What cipher list did you initialize the server SSL_CTX with?
- jxh