Emit deprecation warning if MBEDTLS_RSA_FORCE_BLINDING is not set

This commit is contained in:
Hanno Becker 2017-09-07 11:32:04 +01:00
parent 6ac972d815
commit a988a2702a

View File

@ -66,6 +66,13 @@
#define mbedtls_free free
#endif
#if !defined(MBEDTLS_RSA_FORCE_BLINDING) && \
defined(MBEDTLS_DEPRECATED_WARNING)
#warning Not enforcing blinding checks for RSA private key operations\
is deprecated. Please uncomment MBEDTLS_RSA_FORCE_BLINDING\
in config.h to enforce blinding checks.
#endif
/* Implementation that should never be optimized out by the compiler */
static void mbedtls_zeroize( void *v, size_t n ) {
volatile unsigned char *p = (unsigned char*)v; while( n-- ) *p++ = 0;