Home
last modified time | relevance | path

Searched refs:sm3_update (Results 1 – 3 of 3) sorted by relevance

/optee_os/core/crypto/
H A Dsm3.c187 void sm3_update(struct sm3_context *ctx, const uint8_t *input, size_t ilen) in sm3_update() function
243 sm3_update(ctx, sm3_padding, padn); in sm3_final()
244 sm3_update(ctx, msglen, 8); in sm3_final()
261 sm3_update(&ctx, input, ilen); in sm3()
287 sm3_update(ctx, ctx->ipad, 64); in sm3_hmac_init()
294 sm3_update(ctx, input, ilen); in sm3_hmac_update()
303 sm3_update(ctx, ctx->opad, 64); in sm3_hmac_final()
304 sm3_update(ctx, tmpbuf, 32); in sm3_hmac_final()
H A Dsm3.h27 void sm3_update(struct sm3_context *ctx, const uint8_t *input, size_t ilen);
H A Dsm3-hash.c45 sm3_update(&to_hash_ctx(ctx)->sm3_ctx, data, len); in op_sm3_hash_update()