Home
last modified time | relevance | path

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

/third_party/libwebsockets/lib/tls/mbedtls/
Dlws-genhash.c37 #define mbedtls_sha256_starts_ret mbedtls_sha256_starts
177 mbedtls_sha256_starts(&ctx->u.sha256, 0); in lws_genhash_init()
/third_party/mbedtls/include/mbedtls/
Dcompat-2.x.h49 #define mbedtls_sha256_starts_ret mbedtls_sha256_starts
Dsha256.h102 int mbedtls_sha256_starts( mbedtls_sha256_context *ctx, int is224 );
/third_party/mbedtls/library/
Dpsa_crypto_hash.c165 ret = mbedtls_sha256_starts( &operation->ctx.sha256, 1 ); in mbedtls_psa_hash_setup()
171 ret = mbedtls_sha256_starts( &operation->ctx.sha256, 0 ); in mbedtls_psa_hash_setup()
Dsha256.c80 int mbedtls_sha256_starts( mbedtls_sha256_context *ctx, int is224 ) in mbedtls_sha256_starts() function
407 if( ( ret = mbedtls_sha256_starts( &ctx, is224 ) ) != 0 ) in mbedtls_sha256()
502 if( ( ret = mbedtls_sha256_starts( &ctx, k ) ) != 0 ) in mbedtls_sha256_self_test()
Dentropy.c191 ( ret = mbedtls_sha256_starts( &ctx->accumulator, 0 ) ) != 0 ) in entropy_update()
388 if( ( ret = mbedtls_sha256_starts( &ctx->accumulator, 0 ) ) != 0 ) in mbedtls_entropy_func()
Dmd.c444 return( mbedtls_sha256_starts( ctx->md_ctx, 1 ) ); in mbedtls_md_starts()
448 return( mbedtls_sha256_starts( ctx->md_ctx, 0 ) ); in mbedtls_md_starts()
Dssl_tls.c2458 mbedtls_sha256_starts( &ssl->handshake->fin_sha256, 0 ); in mbedtls_ssl_reset_checksum()
2968 mbedtls_sha256_starts( &handshake->fin_sha256, 0 ); in ssl_handshake_params_init()
/third_party/mbedtls/tests/suites/
Dtest_suite_shax.function31 mbedtls_sha256_starts( &ctx, invalid_type ) );
/third_party/mbedtls/docs/
D3.0-migration-guide.md315 | `mbedtls_sha256_starts_ret` | `mbedtls_sha256_starts` |
/third_party/mbedtls/
DChangeLog2492 * Fix the entropy.c module to not call mbedtls_sha256_starts() or