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