mbedtls_ctr_drbg_update_ret() function
This function updates the state of the CTR_DRBG context.
Arguments
additional
The data to update the state with.
add_len
Length of \p additional in bytes. This must be at most #MBEDTLS_CTR_DRBG_MAX_SEED_INPUT.
Return value
\c 0 on success. #MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG if \p add_len is more than #MBEDTLS_CTR_DRBG_MAX_SEED_INPUT. An error from the underlying AES cipher on failure.