mbedtls/programs/test
Gilles Peskine eab4d701ca Fix CTR_DRBG benchmark
You can't reuse a CTR_DRBG context without free()ing it and
re-init()ing it. This generally happened to work, but was never
guaranteed. It could have failed with alternative implementations of
the AES module because mbedtls_ctr_drbg_seed() calls
mbedtls_aes_init() on a context which is already initialized if
mbedtls_ctr_drbg_seed() hasn't been called before, plausibly causing a
memory leak. Calling free() and seed() with no intervening init fails
when MBEDTLS_THREADING_C is enabled and all-bits-zero is not a valid
mutex representation. So add the missing free() and init().
2019-10-28 21:07:08 +01:00
..
benchmark.c Fix CTR_DRBG benchmark 2019-10-28 21:07:08 +01:00
CMakeLists.txt Remove ssl_cert_test sample app 2019-04-07 16:59:13 +03:00
selftest.c selftest: allow excluding a subset of the tests 2017-12-20 21:57:48 +01:00
udp_proxy.c UDP proxy: Don't attempt to dissect dgram into records when dropping 2019-06-13 11:19:20 +01:00