sha256_update
ATTRIBUTE_WARN_UNUSED_RET int sha256_update(sha256_context *ctx, const u8 *input, u32 ilen);
return sha256_update((sha256_context*)hctx, chunk, chunklen);
ret = sha256_update(&ctx, inputs[pos], ilens[pos]); EG(ret, err);
ret = sha256_update(&ctx, input, ilen); EG(ret, err);
#define SHA256_Update sha256_update
LEGACY_EVP_MD_METH_TABLE(sha256_init, sha256_update, sha256_final, NULL,
sha256_update(&sctx->md, in + iv, sha_off);
sha256_update(&sctx->md, in + sha_off, plen - sha_off);
sha256_update(&sctx->md, out + plen, SHA256_DIGEST_LENGTH);
sha256_update(&sctx->md, ctx->aux.tls_aad, plen);
sha256_update(&sctx->md, out, j);
sha256_update(&sctx->md, pmac->c, SHA256_DIGEST_LENGTH);
sha256_update(&sctx->md, out, len);
sha256_update(&ctx->head, mackey, len);
sha256_update(&ctx->head, hmac_key, sizeof(hmac_key));
sha256_update(&ctx->tail, hmac_key, sizeof(hmac_key));
sha256_update(&sctx->md, p, aad_len);
sha256_update(&sctx->md, param->inp, 13);