Home
last modified time | relevance | path

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

/Linux-v5.15/crypto/
Dvmac.c65 unsigned int partial_size; /* size of the partial block */ member
485 dctx->partial_size = 0; in vmac_init()
507 if (dctx->partial_size) { in vmac_update()
508 n = min(len, VMAC_NHBYTES - dctx->partial_size); in vmac_update()
509 memcpy(&dctx->partial[dctx->partial_size], p, n); in vmac_update()
510 dctx->partial_size += n; in vmac_update()
513 if (dctx->partial_size == VMAC_NHBYTES) { in vmac_update()
515 dctx->partial_size = 0; in vmac_update()
529 dctx->partial_size = len; in vmac_update()
538 unsigned int partial = dctx->partial_size; in vhash_final()