mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-25 09:35:46 +01:00
Deprecate MBEDTLS_SSL_HW_RECORD_ACCEL config
Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
parent
20b3a68e70
commit
84b4e796a3
@ -1,5 +1,11 @@
|
|||||||
mbed TLS ChangeLog (Sorted per branch, date)
|
mbed TLS ChangeLog (Sorted per branch, date)
|
||||||
|
|
||||||
|
= mbed TLS x.x.x branch released xxxx-xx-xx
|
||||||
|
|
||||||
|
New deprecations
|
||||||
|
* Deprecate MBEDTLS_SSL_HW_RECORD_ACCEL that enables function hooks in the
|
||||||
|
SSL module for hardware acceleration of individual records.
|
||||||
|
|
||||||
= mbed TLS 2.21.0 branch released 2020-02-20
|
= mbed TLS 2.21.0 branch released 2020-02-20
|
||||||
|
|
||||||
New deprecations
|
New deprecations
|
||||||
|
@ -798,6 +798,14 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif /* MBEDTLS_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO */
|
#endif /* MBEDTLS_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO */
|
||||||
|
|
||||||
|
#if defined(MBEDTLS_SSL_HW_RECORD_ACCEL)
|
||||||
|
#if defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
|
#error "MBEDTLS_SSL_HW_RECORD_ACCEL is deprecated and will likely be removed in a future version of Mbed TLS"
|
||||||
|
#elif defined(MBEDTLS_DEPRECATED_WARNING)
|
||||||
|
#warning "MBEDTLS_SSL_HW_RECORD_ACCEL is deprecated and will likely be removed in a future version of Mbed TLS"
|
||||||
|
#endif
|
||||||
|
#endif /* MBEDTLS_SSL_HW_RECORD_ACCEL */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Avoid warning from -pedantic. This is a convenient place for this
|
* Avoid warning from -pedantic. This is a convenient place for this
|
||||||
* workaround since this is included by every single file before the
|
* workaround since this is included by every single file before the
|
||||||
|
@ -1527,6 +1527,9 @@
|
|||||||
* Enable hooking functions in SSL module for hardware acceleration of
|
* Enable hooking functions in SSL module for hardware acceleration of
|
||||||
* individual records.
|
* individual records.
|
||||||
*
|
*
|
||||||
|
* \deprecated This option is deprecated and will likely be removed in a
|
||||||
|
* future version of Mbed TLS.
|
||||||
|
*
|
||||||
* Uncomment this macro to enable hooking functions.
|
* Uncomment this macro to enable hooking functions.
|
||||||
*/
|
*/
|
||||||
//#define MBEDTLS_SSL_HW_RECORD_ACCEL
|
//#define MBEDTLS_SSL_HW_RECORD_ACCEL
|
||||||
|
Loading…
Reference in New Issue
Block a user