Home
last modified time | relevance | path

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

/Linux-v4.19/crypto/
Dvmac.c64 unsigned int partial_size; /* size of the partial block */ member
486 dctx->partial_size = 0; in vmac_init()
508 if (dctx->partial_size) { in vmac_update()
509 n = min(len, VMAC_NHBYTES - dctx->partial_size); in vmac_update()
510 memcpy(&dctx->partial[dctx->partial_size], p, n); in vmac_update()
511 dctx->partial_size += n; in vmac_update()
514 if (dctx->partial_size == VMAC_NHBYTES) { in vmac_update()
516 dctx->partial_size = 0; in vmac_update()
530 dctx->partial_size = len; in vmac_update()
539 unsigned int partial = dctx->partial_size; in vhash_final()