Add cache for EC J-PAKE client extension

Not used yet, just add the variables and cleanup code.
This commit is contained in:
Manuel Pégourié-Gonnard 2015-09-17 13:59:49 +02:00
parent 6657b8da3b
commit 77c0646ef2
2 changed files with 13 additions and 0 deletions

View file

@ -175,6 +175,10 @@ struct mbedtls_ssl_handshake_params
#endif
#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
mbedtls_ecjpake_context ecjpake_ctx; /*!< EC J-PAKE key exchange */
#if defined(MBEDTLS_SSL_CLI_C)
unsigned char *ecjpake_cache; /*!< Cache for ClientHello ext */
size_t ecjpake_cache_len; /*!< Length of cached data */
#endif
#endif
#if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C) || \
defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)