Lines Matching refs:padlen
410 size_t padlen = 0;
443 padlen = (inputlen + sizeof(L_N) + 1) % (drbg_blocklen(drbg));
444 /* wrap the padlen appropriately */
445 if (padlen)
446 padlen = drbg_blocklen(drbg) - padlen;
448 * pad / padlen contains the 0x80 byte and the following zero bytes.
449 * As the calculated padlen value only covers the number of zero
452 padlen++;
461 drbg_string_fill(&S4, pad, padlen);