Home
last modified time | relevance | path

Searched refs:utf8_value (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/crypto/openssl/crypto/x509v3/
H A Dv3_ncons.c318 unsigned char *utf8_value; in cn2dnsid() local
343 if ((utf8_length = ASN1_STRING_to_UTF8(&utf8_value, cn)) < 0) in cn2dnsid()
351 while (utf8_length > 0 && utf8_value[utf8_length - 1] == '\0') in cn2dnsid()
355 if (memchr(utf8_value, 0, utf8_length) != NULL) { in cn2dnsid()
356 OPENSSL_free(utf8_value); in cn2dnsid()
370 unsigned char c = utf8_value[i]; in cn2dnsid()
388 && utf8_value[i + 1] != '.' in cn2dnsid()
389 && utf8_value[i - 1] != '-' in cn2dnsid()
390 && utf8_value[i + 1] != '-') { in cn2dnsid()
400 *dnsid = utf8_value; in cn2dnsid()
[all …]
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dx509info.c45 result->utf8_value = apr_pstrdup(result_pool, attr->utf8_value); in svn_x509_name_attr_dup()
60 return attr->utf8_value; in svn_x509_name_attr_get_value()
276 svn_stringbuf_appendcstr(buf, attr->utf8_value); in get_dn()
H A Dx509parse.c955 attr->utf8_value = x509name_to_utf8_string(name, result_pool); in x509_name_to_certinfo()
956 if (!attr->utf8_value) in x509_name_to_certinfo()
958 attr->utf8_value = apr_pstrdup(result_pool, "??"); in x509_name_to_certinfo()
1011 return attr->utf8_value; in x509parse_get_cn()
1046 const char *utf8_value; in x509parse_get_hostnames() local
1048 utf8_value = x509parse_get_cn(ci->subject); in x509parse_get_hostnames()
1050 if (utf8_value && is_hostname(utf8_value)) in x509parse_get_hostnames()
1053 APR_ARRAY_PUSH(ci->hostnames, const char*) = utf8_value; in x509parse_get_hostnames()
H A Dx509.h114 const char *utf8_value; member