Update references in some test function documentation

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine 2021-03-24 00:14:53 +01:00
parent 3838f28c33
commit ebf3a4b80f

View File

@ -67,24 +67,24 @@ int mbedtls_test_rnd_std_rand( void *rng_state,
size_t len ); size_t len );
/** /**
* This function only returns zeros * This function only returns zeros.
* *
* rng_state shall be NULL. * \p rng_state shall be \c NULL.
*/ */
int mbedtls_test_rnd_zero_rand( void *rng_state, int mbedtls_test_rnd_zero_rand( void *rng_state,
unsigned char *output, unsigned char *output,
size_t len ); size_t len );
/** /**
* This function returns random based on a buffer it receives. * This function returns random data based on a buffer it receives.
* *
* rng_state shall be a pointer to a rnd_buf_info structure. * \p rng_state shall be a pointer to a #mbedtls_test_rnd_buf_info structure.
* *
* The number of bytes released from the buffer on each call to * The number of bytes released from the buffer on each call to
* the random function is specified by per_call. (Can be between * the random function is specified by per_call. (Can be between
* 1 and 4) * 1 and 4)
* *
* After the buffer is empty it will return rand(); * After the buffer is empty it will return mbedtls_test_rnd_std_rand().
*/ */
int mbedtls_test_rnd_buffer_rand( void *rng_state, int mbedtls_test_rnd_buffer_rand( void *rng_state,
unsigned char *output, unsigned char *output,
@ -96,7 +96,7 @@ int mbedtls_test_rnd_buffer_rand( void *rng_state,
* Pseudo random is based on the XTEA encryption algorithm to * Pseudo random is based on the XTEA encryption algorithm to
* generate pseudorandom. * generate pseudorandom.
* *
* rng_state shall be a pointer to a rnd_pseudo_info structure. * \p rng_state shall be a pointer to a #mbedtls_test_rnd_pseudo_info structure.
*/ */
int mbedtls_test_rnd_pseudo_rand( void *rng_state, int mbedtls_test_rnd_pseudo_rand( void *rng_state,
unsigned char *output, unsigned char *output,