Home
last modified time | relevance | path

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

/Linux-v5.10/crypto/
Dvmac.c64 unsigned int partial_size; /* size of the partial block */ member
484 dctx->partial_size = 0; in vmac_init()
506 if (dctx->partial_size) { in vmac_update()
507 n = min(len, VMAC_NHBYTES - dctx->partial_size); in vmac_update()
508 memcpy(&dctx->partial[dctx->partial_size], p, n); in vmac_update()
509 dctx->partial_size += n; in vmac_update()
512 if (dctx->partial_size == VMAC_NHBYTES) { in vmac_update()
514 dctx->partial_size = 0; in vmac_update()
528 dctx->partial_size = len; in vmac_update()
537 unsigned int partial = dctx->partial_size; in vhash_final()