Hello,
I am having some issues connecting to my cloud server using the HTTPS client. The difference here being the server is not using a certificate and is using a JWT in the authorization header in of the HTTP GET. The server is using TLS1.2, but when I export the ciphersuite used, it returns 0xffffffff and errors out in the connect() (failed with error:95). If I remove TLS, I get a timeout with connect() (failed with error:22).
To get the ciphersuite, I am using the following code:
rtn = setsockopt(fd, SOL_TLS, TLS_CIPHERSUITE_USED, 0, 0);
if (rtn) {
printk("Ciphersuite Used: %x\n", rtn);
}
Any thoughts on this?