Searched refs:tok (Results 1 – 1 of 1) sorted by relevance
/hostap-latest/src/crypto/ |
D | tls_mbedtls_alt.c | 2683 for (const char *s = match, *tok; *s; s = tok ? tok + 1 : "") in tls_mbedtls_match_altsubject() local 2687 } while ((tok = os_strchr(s, ';')) && os_strncmp(tok + 1, "EMAIL:", 6) != 0 && in tls_mbedtls_match_altsubject() 2688 os_strncmp(tok + 1, "DNS:", 4) != 0 && os_strncmp(tok + 1, "URI:", 4) != 0); in tls_mbedtls_match_altsubject() 2690 list[nlist].n = tok ? (size_t)(tok - s) : os_strlen(s); in tls_mbedtls_match_altsubject() 2757 for (const char *s = match, *tok; *s; s = tok ? tok + 1 : "") in tls_mbedtls_match_suffixes() local 2759 tok = os_strchr(s, ';'); in tls_mbedtls_match_suffixes() 2761 list[nlist].n = tok ? (size_t)(tok - s) : os_strlen(s); in tls_mbedtls_match_suffixes() 2812 for (const char *s = match, *tok, *e; *s; s = tok ? tok + 1 : "") in tls_mbedtls_match_dn_field() local 2814 tok = os_strchr(s, '/'); in tls_mbedtls_match_dn_field() 2817 list[nlist].n = tok ? (size_t)(tok - s) : os_strlen(s); in tls_mbedtls_match_dn_field()
|