Implementing a Secure Socket

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

The following procedure describes how to establish a secure socket connection.

To implement a secure socket

  1. Create a socket with the socket function.

  2. Set the socket in secure mode with the setsockopt function. Set level to SOL_SOCKET, optname to SO_SECURE, and optval to a DWORD set to SO_SEC_SSL.

  3. Specify the certificate validation callback function by calling WSAIoctl with the SO_SSL_SET_VALIDATE_CERT_HOOK control code.

  4. To verify the server's identity during the handshake, call WSAIoctl with the SO_SSL_SET_PEERNAME control code.

    The server name is verified against the server certificate after a successful SSL handshake. The verification results are then indicated in the certificate validation callback. If the specified server name does not match the one indicated in the certificate chain of the SSL Handshake, SSL_CERT_FLAG_ISSUER_UNKNOWN is set in the dwFlags parameter of SslValidateCertHook.

    If you do not perform this step, no verification is performed.

  5. To specify a particular security protocol, call WSAIoctl with the SO_SSL_GET_PROTOCOLS control code to determine the default protocols. Then call WSAIoctl with the SO_SSL_SET_PROTOCOLS control code to select the protocols to be enabled. Otherwise, Windows Embedded CE selects the protocol.

  6. Make a connection with the connect function.

  7. The certificate callback function is automatically called. The connection can be completed only if the callback function verifies the acceptability of the certificate by returning SSL_ERR_OKAY.

  8. Transmit and send.

  9. The send and recv functions automatically encode and decode data.

  10. When you are finished, close the socket with the closesocket function.

See Also

Reference

WSAIoctl

Concepts

Winsock Secure Sockets
Secure Socket Control Codes