Tool/software:
Hi
Our application needs to obtain a server certificate. Does TI have a sample guide on how to achieve this on CC3235?
import ssl # Server address serverHost = "example.com"; serverPort = "443"; serverAddress = (serverHost, serverPort); # Retrieve the server certificate in PEM format cert = ssl.get_server_certificate(serverAddress); print(cert);
Thanks.
BR
Trevor