Home | History | Annotate | Download | only in tls

Lines Matching defs:len

138 	size_t len;
141 len = *plain_len;
142 if (crypto_rsa_exptmod(crypt, crypt_len, plain, &len, key, 0) < 0)
156 if (len < 3 + 8 + 16 /* min hash len */ ||
170 while (pos < plain + len && *pos == 0xff)
180 if (pos + 16 /* min hash len */ >= plain + len || *pos != 0x00) {
186 len -= pos - plain;
189 os_memmove(plain, pos, len);
190 *plain_len = len;