g_eli_crypto_hmac_update
g_eli_crypto_hmac_update(ctxp, buf, done);
g_eli_crypto_hmac_update(ctxp, md->md_salt,
g_eli_crypto_hmac_update(ctxp, passbuf, strlen(passbuf));
g_eli_crypto_hmac_update(ctxp, dkey, sizeof(dkey));
g_eli_crypto_hmac_update(&ctx, gdev->md.md_salt,
g_eli_crypto_hmac_update(&ctx, (const uint8_t *)passphrase,
g_eli_crypto_hmac_update(&ctx, dkey, sizeof(dkey));
g_eli_crypto_hmac_update(ctx, data, size);
g_eli_crypto_hmac_update(&ctx, md.md_salt,
g_eli_crypto_hmac_update(&ctx, passphrase,
g_eli_crypto_hmac_update(&ctx, dkey, sizeof(dkey));
void g_eli_crypto_hmac_update(struct hmac_ctx *ctx, const uint8_t *data,
g_eli_crypto_hmac_update(&ctx, data, datasize);
g_eli_crypto_hmac_update(&ctx, saltcount, sizeof(saltcount));
g_eli_crypto_hmac_update(&ctx, md, sizeof(md));