Home
last modified time | relevance | path

Searched refs:hmac_drbg (Results 1 – 8 of 8) sorted by relevance

/mbedtls-latest/programs/test/
Dbenchmark.c512 ctr_drbg, hmac_drbg, member
597 todo.hmac_drbg = 1; in main()
994 if (todo.hmac_drbg) { in main()
995 mbedtls_hmac_drbg_context hmac_drbg; in main() local
998 mbedtls_hmac_drbg_init(&hmac_drbg); in main()
1005 if (mbedtls_hmac_drbg_seed(&hmac_drbg, md_info, myrand, NULL, NULL, 0) != 0) { in main()
1009 mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); in main()
1011 if (mbedtls_hmac_drbg_seed(&hmac_drbg, md_info, myrand, NULL, NULL, 0) != 0) { in main()
1014 mbedtls_hmac_drbg_set_prediction_resistance(&hmac_drbg, in main()
1017 mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); in main()
[all …]
/mbedtls-latest/tests/suites/
Dtest_suite_random.function9 #include "mbedtls/hmac_drbg.h"
Dtest_suite_hmac_drbg.function2 #include "mbedtls/hmac_drbg.h"
/mbedtls-latest/scripts/data_files/
Dquery_config.fmt46 #include "mbedtls/hmac_drbg.h"
/mbedtls-latest/library/
DMakefile122 hmac_drbg.o \
DCMakeLists.txt48 hmac_drbg.c
/mbedtls-latest/docs/
Dpsa-transition.md135 | `hmac_drbg.h` | `mbedtls_hmac_drbg_` | [Random generation interface](#random-generation-interface…
634 …A crypto do not need the interfaces from `entropy.h`, `ctr_drbg.h` and `hmac_drbg.h`. See the next…
643 …ctr_drbg_random`, `mbedtls_ctr_drbg_free`, `mbedtls_entropy_free` — or `hmac_drbg` equivalents of …
653 … HMAC\_DRBG. If you need these algorithms, keep using `ctr_drbg.h` and `hmac_drbg.h`, but note tha…
/mbedtls-latest/
DChangeLog65 - Random generation: ctr_drbg.h, hmac_drbg.h, entropy.h;
3299 * Fix failure in hmac_drbg in the benchmark sample application, when