MD5_Update
MD5_Update(&key->md, in + md5_off, plen - md5_off);
MD5_Update(&key->md, out + plen, MD5_DIGEST_LENGTH);
MD5_Update(&key->md, out, md5_off);
MD5_Update(&key->md, out + md5_off, plen - md5_off);
MD5_Update(&key->md, mac, MD5_DIGEST_LENGTH);
MD5_Update(&key->md, out + md5_off, len - md5_off);
MD5_Update(&key->head, ptr, arg);
MD5_Update(&key->head, hmac_key, sizeof(hmac_key));
MD5_Update(&key->tail, hmac_key, sizeof(hmac_key));
MD5_Update(&key->md, p, arg);
MD5_Update(&key->md, in, md5_off);
#define HASH_UPDATE MD5_Update
MD5_Update(&c, d, n);
MD5_Update(&c, temp, chunk);
if (!MD5_Update(&mctx->md5, data, count))
if (!MD5_Update(&mctx->md5, padtmp, sizeof(padtmp)))
if (!MD5_Update(&mctx->md5, padtmp, sizeof(padtmp)))
if (!MD5_Update(&mctx->md5, md5tmp, sizeof(md5tmp)))
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
MD5_Update(&ctx->md, out + plen, MD5_DIGEST_LENGTH);
MD5_Update(&ctx->md, out, md5_off);
MD5_Update(&ctx->md, out + md5_off, plen - md5_off);
MD5_Update(&ctx->md, mac, MD5_DIGEST_LENGTH);
MD5_Update(&ctx->md, out + md5_off, len - md5_off);
MD5_Update(&ctx->md, aad, aad_len);
MD5_Update(&ctx->head, key, len);
MD5_Update(&ctx->head, hmac_key, sizeof(hmac_key));
MD5_Update(&ctx->tail, hmac_key, sizeof(hmac_key));
MD5_Update(&ctx->md, in, md5_off);
MD5_Update(&ctx->md, in + md5_off, plen - md5_off);
MD5_Init, MD5_Update, MD5_Final)
#define MD5Update(c, data, len) MD5_Update(c, data, len)
#define MD5Update MD5_Update
static void MD5_Update(MD5_CTX *, const unsigned char *, size_t);
(DIGEST_Update*)&MD5_Update, (DIGEST_End*)&MD5End,