mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-30 22:43:08 +03:00
SSL asynchronous signature: first implementation
Implement SSL asynchronous private operation for the case of a signature operation in a server. This is a first implementation. It is functional, but the code is not clean, with heavy reliance on goto.
This commit is contained in:
@ -220,6 +220,7 @@ struct mbedtls_ssl_handshake_params
|
||||
#endif /* MBEDTLS_X509_CRT_PARSE_C */
|
||||
#if defined(MBEDTLS_SSL_ASYNC_PRIVATE_C)
|
||||
void *p_async_operation_ctx; /*!< asynchronous operation context */
|
||||
unsigned char *out_async_start; /*!< pointer where the asynchronous operation must write in the output buffer */
|
||||
#endif /* MBEDTLS_SSL_ASYNC_PRIVATE_C */
|
||||
|
||||
#if defined(MBEDTLS_SSL_PROTO_DTLS)
|
||||
|
Reference in New Issue
Block a user