SHA256_Update
__weak_alias(SHA256_Update,_SHA256_Update)
return SHA256_Update((SHA256_CTX *)context, data, len);
SHA256_Update((SHA256_CTX *)c, (unsigned char *) data->v, data->l);
SHA256_Update(data(ctx), data, count);
SHA256_Update,
SHA256_Update(&context, data, len);
void SHA256_Update __P((SHA256_CTX*, const u_int8_t*, size_t));
SHA256_Update(&ctx, buf, sizeof buf);
SHA256_Update(&ctx, buf, sizeof buf);
SHA256_Update(&ctx, data, datalen);
(void *)SHA256_Init, (void *)SHA256_Update,
SHA256_Update(&H->sha256, key, keylen);
SHA256_Update(&H->sha256, ipad, SHA256_BLOCK_LENGTH);
SHA256_Update(&H->sha256, buf, buflen);
SHA256_Update(&H->sha256, opad, SHA256_BLOCK_LENGTH);
SHA256_Update(&H->sha256, h, SHA256_DIGEST_LENGTH);
#define hash_update SHA256_Update
SHA256_Init, SHA256_Update, SHA256_Final);
SHA256_Update(ctx, buf, len);
int SHA256_Update(SHA256_CTX*, const uint8_t*, size_t);
SHA256_Update(&ctx, buf + j, len);
#define MD5Update SHA256_Update
SHA256_Update(&ctxSHA256, p, size);
SHA256_Update(&ctxSHA256, buf, nr);
SHA256_Update(&ctx, (const uint8_t*)buf, l);