I am trying to figure out what is the best way to check certificate CN via libcurl.
I have a secure website:
https://www.example.com
DNS query resolves to 3 different IP addresses:
1.1.1.1
2.2.2.2
3.3.3.3
Obviously, going to https ://1.1.1.1 will result in a bad certificate since cn=*.example.com
I would like my libcurl client to validate that when it connects to https ://1.1.1.1 that the server certificate cn=www.example.com. If it does, i would like the operation to succeed.
Reading the libcurl API, I think the following option is what i need.
curl_easy_setopt(p.curl, CURLOPT_SSL_CTX_FUNCTION, sslctxfun) ;
In the callback function I receive the SSL_CTX and param.
How do I extract the CN name from the CTX to compare it to *.example.com ? Is that the right way to do it? Is it possible to register a callback on the SSL context via libcurl to be notified when the commonname is being verified?
Thanks!