Home
last modified time | relevance | path

Searched refs:mbedtls_sha256_starts (Results 1 – 9 of 9) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dcompat-2.x.h37 #define mbedtls_sha256_starts_ret mbedtls_sha256_starts
Dsha256.h95 int mbedtls_sha256_starts(mbedtls_sha256_context *ctx, int is224);
/openthread-latest/third_party/mbedtls/repo/library/
Dpsa_crypto_hash.c124 ret = mbedtls_sha256_starts(&operation->ctx.sha256, 1); in mbedtls_psa_hash_setup()
130 ret = mbedtls_sha256_starts(&operation->ctx.sha256, 0); in mbedtls_psa_hash_setup()
Dsha256.c244 int mbedtls_sha256_starts(mbedtls_sha256_context *ctx, int is224) in mbedtls_sha256_starts() function
793 if ((ret = mbedtls_sha256_starts(&ctx, is224)) != 0) { in mbedtls_sha256()
905 if ((ret = mbedtls_sha256_starts(&ctx, is224)) != 0) { in mbedtls_sha256_common_self_test()
Dmd.c542 return mbedtls_sha256_starts(ctx->md_ctx, 1); in mbedtls_md_starts()
546 return mbedtls_sha256_starts(ctx->md_ctx, 0); in mbedtls_md_starts()
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_shax.function31 mbedtls_sha256_starts(&ctx, invalid_type));
/openthread-latest/src/core/crypto/
Dcrypto_platform.cpp394 VerifyOrExit((mbedtls_sha256_starts(context, 0) == 0), error = kErrorFailed); in otPlatCryptoSha256Start()
/openthread-latest/third_party/mbedtls/repo/docs/
D3.0-migration-guide.md343 | `mbedtls_sha256_starts_ret` | `mbedtls_sha256_starts` |
/openthread-latest/third_party/mbedtls/repo/
DChangeLog3764 * Fix the entropy.c module to not call mbedtls_sha256_starts() or