Searched refs:mbedtls_internal_sha256_process (Results 1 – 4 of 4) sorted by relevance
172 int mbedtls_internal_sha256_process( mbedtls_sha256_context *ctx, in mbedtls_internal_sha256_process() function292 if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 ) in mbedtls_sha256_update()302 if( ( ret = mbedtls_internal_sha256_process( ctx, input ) ) != 0 ) in mbedtls_sha256_update()345 if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 ) in mbedtls_sha256_finish()361 if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 ) in mbedtls_sha256_finish()
769 return( mbedtls_internal_sha256_process( ctx->md_ctx, data ) ); in mbedtls_md_process()773 return( mbedtls_internal_sha256_process( ctx->md_ctx, data ) ); in mbedtls_md_process()
149 int mbedtls_internal_sha256_process( mbedtls_sha256_context *ctx,
76 Another example: enable `MBEDTLS_SHA256_PROCESS_ALT` and implement `mbedtls_internal_sha256_process…