Improve some documentation and ChangeLog entry
This commit is contained in:
parent
a4251f4775
commit
e7306d30a9
12
ChangeLog
12
ChangeLog
@ -23,10 +23,14 @@ Security
|
|||||||
modules.
|
modules.
|
||||||
|
|
||||||
Features
|
Features
|
||||||
* Add new config.h flag MBEDTLS_CHECK_PARAMS that enables validation of
|
* Add a new config.h option of MBEDTLS_CHECK_PARAMS that enables additional
|
||||||
more of the parameters by public API functions (see its documentation in
|
validation of parameters in the library's public interface. This does not
|
||||||
config.h for details). Disabled by default - requires users to provide an
|
change the API of existing functions, but additional clarity has been
|
||||||
implementation of the callback function or macro.
|
added to the defined documentation interface to make clearer what the
|
||||||
|
interface is designed to accept. See the corresponding API documentation
|
||||||
|
for each function to see what parameter values are defined as invalid.
|
||||||
|
This feature is disabled by default. See its API documentation in
|
||||||
|
config.h for additional steps you have to take when enabling it.
|
||||||
|
|
||||||
New deprecations
|
New deprecations
|
||||||
* Deprecate mbedtls_ctr_drbg_update and mbedtls_hmac_drbg_update
|
* Deprecate mbedtls_ctr_drbg_update and mbedtls_hmac_drbg_update
|
||||||
|
@ -292,6 +292,9 @@
|
|||||||
* calls that function, but does not provide a default definition for it,
|
* calls that function, but does not provide a default definition for it,
|
||||||
* - or provide a different definition of the macro MBEDTLS_PARAM_FAILED()
|
* - or provide a different definition of the macro MBEDTLS_PARAM_FAILED()
|
||||||
* below if the above mechanism is not flexible enough to suit your needs.
|
* below if the above mechanism is not flexible enough to suit your needs.
|
||||||
|
* Note that you may define it to expand to nothing if you're happy to be
|
||||||
|
* notified about invalid parameters only in non-void functions, and have
|
||||||
|
* void function just silently return early on invalid parameters.
|
||||||
*
|
*
|
||||||
* Uncomment to enable validation of application-controlled parameters.
|
* Uncomment to enable validation of application-controlled parameters.
|
||||||
*/
|
*/
|
||||||
@ -3055,6 +3058,12 @@
|
|||||||
* from within the library - you can ensure that by providing
|
* from within the library - you can ensure that by providing
|
||||||
* them in this file next to the macro definition).
|
* them in this file next to the macro definition).
|
||||||
*
|
*
|
||||||
|
* Note that you may define this macro to expand to nothing, in
|
||||||
|
* which case you don't have to worry about declarations or
|
||||||
|
* definitions. However, you will then be notified about invalid
|
||||||
|
* parameters only in non-void functions, and void function will
|
||||||
|
* just silently return early on invalid parameters.
|
||||||
|
*
|
||||||
* \param cond The expression that should evaluate to true, but doesn't.
|
* \param cond The expression that should evaluate to true, but doesn't.
|
||||||
*/
|
*/
|
||||||
//#define MBEDTLS_PARAM_FAILED( cond ) assert( cond )
|
//#define MBEDTLS_PARAM_FAILED( cond ) assert( cond )
|
||||||
|
@ -199,7 +199,7 @@ typedef enum
|
|||||||
* Note: this macro is available even when #MBEDTLS_CHECK_PARAMS is
|
* Note: this macro is available even when #MBEDTLS_CHECK_PARAMS is
|
||||||
* disabled, as it makes sense to check that the functions accept all
|
* disabled, as it makes sense to check that the functions accept all
|
||||||
* legal values even if this option is disabled - only in that case,
|
* legal values even if this option is disabled - only in that case,
|
||||||
* the test if more about whether the function segfaults than about
|
* the test is more about whether the function segfaults than about
|
||||||
* whether it invokes MBEDTLS_PARAM_FAILED().
|
* whether it invokes MBEDTLS_PARAM_FAILED().
|
||||||
*
|
*
|
||||||
* \param TEST The test expression to be tested.
|
* \param TEST The test expression to be tested.
|
||||||
|
Loading…
Reference in New Issue
Block a user