Home
last modified time | relevance | path

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

/third_party/libwebsockets/lib/tls/mbedtls/
Dlws-genhash.c40 #define mbedtls_sha512_starts_ret mbedtls_sha512_starts
181 mbedtls_sha512_starts(&ctx->u.sha512, 1 /* is384 */); in lws_genhash_init()
185 mbedtls_sha512_starts(&ctx->u.sha512, 0); in lws_genhash_init()
/third_party/mbedtls/include/mbedtls/
Dcompat-2.x.h53 #define mbedtls_sha512_starts_ret mbedtls_sha512_starts
Dsha512.h109 int mbedtls_sha512_starts( mbedtls_sha512_context *ctx, int is384 );
/third_party/mbedtls/library/
Dpsa_crypto_hash.c177 ret = mbedtls_sha512_starts( &operation->ctx.sha512, 1 ); in mbedtls_psa_hash_setup()
183 ret = mbedtls_sha512_starts( &operation->ctx.sha512, 0 ); in mbedtls_psa_hash_setup()
Dsha512.c95 int mbedtls_sha512_starts( mbedtls_sha512_context *ctx, int is384 ) in mbedtls_sha512_starts() function
441 if( ( ret = mbedtls_sha512_starts( &ctx, is384 ) ) != 0 ) in mbedtls_sha512()
563 if( ( ret = mbedtls_sha512_starts( &ctx, k ) ) != 0 ) in mbedtls_sha512_self_test()
Dentropy.c182 ( ret = mbedtls_sha512_starts( &ctx->accumulator, 0 ) ) != 0 ) in entropy_update()
367 if( ( ret = mbedtls_sha512_starts( &ctx->accumulator, 0 ) ) != 0 ) in mbedtls_entropy_func()
Dmd.c452 return( mbedtls_sha512_starts( ctx->md_ctx, 1 ) ); in mbedtls_md_starts()
456 return( mbedtls_sha512_starts( ctx->md_ctx, 0 ) ); in mbedtls_md_starts()
Dssl_tls.c2466 mbedtls_sha512_starts( &ssl->handshake->fin_sha512, 1 ); in mbedtls_ssl_reset_checksum()
2977 mbedtls_sha512_starts( &handshake->fin_sha512, 1 ); in ssl_handshake_params_init()
/third_party/mbedtls/tests/suites/
Dtest_suite_shax.function80 mbedtls_sha512_starts( &ctx, invalid_type ) );
/third_party/mbedtls/docs/
D3.0-migration-guide.md319 | `mbedtls_sha512_starts_ret` | `mbedtls_sha512_starts` |
/third_party/mbedtls/
DChangeLog2493 mbedtls_sha512_starts() in the mbedtls_entropy_init() function.