Home | History | Annotate | Download | only in tls

Lines Matching defs:len

131 	size_t len;
134 len = *plain_len;
135 if (crypto_rsa_exptmod(crypt, crypt_len, plain, &len, key, 0) < 0)
147 if (len < 3 + 8 + 16 /* min hash len */ ||
162 while (pos + 1 < plain + len && *pos == 0x00 && pos[1] == 0x00)
171 while (pos < plain + len && *pos == 0xff)
182 if (pos + 16 /* min hash len */ >= plain + len || *pos != 0x00) {
188 len -= pos - plain;
191 os_memmove(plain, pos, len);
192 *plain_len = len;