Home
last modified time | relevance | path

Searched refs:mbedtls_md_starts (Results 1 – 14 of 14) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/library/
Dmd.c510 int mbedtls_md_starts(mbedtls_md_context_t *ctx) in mbedtls_md_starts() function
944 if ((ret = mbedtls_md_starts(&ctx)) != 0) { in mbedtls_md_file()
980 if ((ret = mbedtls_md_starts(ctx)) != 0) { in mbedtls_md_hmac_starts()
1003 if ((ret = mbedtls_md_starts(ctx)) != 0) { in mbedtls_md_hmac_starts()
1041 if ((ret = mbedtls_md_starts(ctx)) != 0) { in mbedtls_md_hmac_finish()
1066 if ((ret = mbedtls_md_starts(ctx)) != 0) { in mbedtls_md_hmac_reset()
Dpem.c96 if ((ret = mbedtls_md_starts(&md5_ctx)) != 0) { in pem_pbkdf1()
119 if ((ret = mbedtls_md_starts(&md5_ctx)) != 0) { in pem_pbkdf1()
Dentropy.c152 ret = mbedtls_md_starts(&ctx->accumulator); in entropy_update()
341 ret = mbedtls_md_starts(&ctx->accumulator); in mbedtls_entropy_func()
Dpkcs12.c288 if ((ret = mbedtls_md_starts(&md_ctx)) != 0) { in calculate_hashes()
Drsa.c1654 if ((ret = mbedtls_md_starts(&md_ctx)) != 0) { in mgf_mask()
1711 if ((ret = mbedtls_md_starts(&md_ctx)) != 0) { in hash_mprime()
Dssl_tls.c862 ret = mbedtls_md_starts(&ssl->handshake->fin_sha256); in mbedtls_ssl_reset_checksum()
886 ret = mbedtls_md_starts(&ssl->handshake->fin_sha384); in mbedtls_ssl_reset_checksum()
9408 if ((ret = mbedtls_md_starts(&ctx)) != 0) { in mbedtls_ssl_get_key_exchange_md_tls1_2()
Dssl_msg.c260 MD_CHK(mbedtls_md_starts(ctx)); in mbedtls_ct_hmac()
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_md.function36 TEST_EQUAL(0, mbedtls_md_starts(&ctx));
112 TEST_EQUAL(mbedtls_md_starts(NULL), MBEDTLS_ERR_MD_BAD_INPUT_DATA);
113 TEST_EQUAL(mbedtls_md_starts(&ctx), MBEDTLS_ERR_MD_BAD_INPUT_DATA);
265 TEST_EQUAL(0, mbedtls_md_starts(&ctx));
312 TEST_EQUAL(0, mbedtls_md_starts(&ctx));
Dtest_suite_entropy.function509 TEST_ASSERT(mbedtls_md_starts(&accumulator) == 0);
515 TEST_ASSERT(mbedtls_md_starts(&accumulator) == 0);
/openthread-latest/third_party/mbedtls/repo/programs/aes/
Dcrypt_and_hash.c247 if (mbedtls_md_starts(&md_ctx) != 0) { in main()
283 if (mbedtls_md_starts(&md_ctx) != 0) { in main()
440 if (mbedtls_md_starts(&md_ctx) != 0) { in main()
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dmd.h276 int mbedtls_md_starts(mbedtls_md_context_t *ctx);
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-migration/
Dmd-cipher-dispatch.md412 * `mbedtls_md_starts`
/openthread-latest/third_party/mbedtls/repo/docs/
Dpsa-transition.md509 …s_md_setup` to select the hash algorithm, with `hmac=0`. Then call `mbedtls_md_starts` to start th…
/openthread-latest/third_party/mbedtls/repo/
DChangeLog1180 mbedtls_md_starts(). Fixes #2227.