I am trying to resume a DTLS handshake. I have used the API mbedtls_ssl_set/get_session(). The followings are the sequences:
- Perform mbedtls_ssl_handshake().
- mbedtls_ssl_get_session() and mbedtls_ssl_session_save();
- mbedtls_ssl_session_reset()
- mbedtls_ssl_session_load() and mbedtls_ssl_set_session()
- Do another mbedtls_ssl_handshake().
However, the handshake is still a full handshake. I can’t seem to produce these session resumption DTLS events:
client: 0:1 handshake client_hello 167 B
server: 0:1 handshake client_hello 167 B
server: 0:1 handshake server_hello 90 B
server: 0:2 change_cipher_spec - 1 B
Could you please confirm if these APIs support DTLS because I have found this forum ticket: Resumed TLS session with DTLSSockets ?
Thanks.