Home
last modified time | relevance | path

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

/external/openthread/third_party/mbedtls/repo/library/
Dsha256.c173 int mbedtls_internal_sha256_process( mbedtls_sha256_context *ctx, in mbedtls_internal_sha256_process() function
265 mbedtls_internal_sha256_process( ctx, data ); in mbedtls_sha256_process()
300 if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 ) in mbedtls_sha256_update_ret()
310 if( ( ret = mbedtls_internal_sha256_process( ctx, input ) ) != 0 ) in mbedtls_sha256_update_ret()
362 if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 ) in mbedtls_sha256_finish_ret()
378 if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 ) in mbedtls_sha256_finish_ret()
Dmd.c852 return( mbedtls_internal_sha256_process( ctx->md_ctx, data ) ); in mbedtls_md_process()
/external/mbedtls/library/
Dsha256.c241 # define mbedtls_internal_sha256_process_a64_crypto mbedtls_internal_sha256_process
360 #define mbedtls_internal_sha256_process_c mbedtls_internal_sha256_process
537 int mbedtls_internal_sha256_process( mbedtls_sha256_context *ctx, in mbedtls_internal_sha256_process() function
576 if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 ) in mbedtls_sha256_update()
628 if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 ) in mbedtls_sha256_finish()
644 if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 ) in mbedtls_sha256_finish()
Dmd.c775 return( mbedtls_internal_sha256_process( ctx->md_ctx, data ) ); in mbedtls_md_process()
779 return( mbedtls_internal_sha256_process( ctx->md_ctx, data ) ); in mbedtls_md_process()
/external/mbedtls/include/mbedtls/
Dsha256.h149 int mbedtls_internal_sha256_process( mbedtls_sha256_context *ctx,
/external/openthread/third_party/mbedtls/repo/include/mbedtls/
Dsha256.h154 int mbedtls_internal_sha256_process( mbedtls_sha256_context *ctx,
/external/openthread/third_party/mbedtls/repo/tests/suites/
Dtest_suite_shax.function105 mbedtls_internal_sha256_process( NULL, buf ) );
107 mbedtls_internal_sha256_process( &ctx, NULL ) );
/external/mbedtls/docs/architecture/
Dalternative-implementations.md76 Another example: enable `MBEDTLS_SHA256_PROCESS_ALT` and implement `mbedtls_internal_sha256_process