Searched refs:ia5 (Results 1 – 11 of 11) sorted by relevance
| /NextBSD/crypto/openssl/crypto/x509v3/ |
| HD | v3_ia5.c | 67 ASN1_IA5STRING *ia5); 82 ASN1_IA5STRING *ia5) in i2s_ASN1_IA5STRING() argument 85 if (!ia5 || !ia5->length) in i2s_ASN1_IA5STRING() 87 if (!(tmp = OPENSSL_malloc(ia5->length + 1))) { in i2s_ASN1_IA5STRING() 91 memcpy(tmp, ia5->data, ia5->length); in i2s_ASN1_IA5STRING() 92 tmp[ia5->length] = 0; in i2s_ASN1_IA5STRING() 99 ASN1_IA5STRING *ia5; in s2i_ASN1_IA5STRING() local 105 if (!(ia5 = M_ASN1_IA5STRING_new())) in s2i_ASN1_IA5STRING() 107 if (!ASN1_STRING_set((ASN1_STRING *)ia5, (unsigned char *)str, in s2i_ASN1_IA5STRING() 109 M_ASN1_IA5STRING_free(ia5); in s2i_ASN1_IA5STRING() [all …]
|
| HD | v3nametest.c | 103 ASN1_IA5STRING *ia5 = NULL; in set_altname() local 120 ia5 = ASN1_IA5STRING_new(); in set_altname() 121 if (ia5 == NULL) in set_altname() 123 if (!ASN1_STRING_set(ia5, name, -1)) in set_altname() 128 GENERAL_NAME_set0_value(gen, type, ia5); in set_altname() 129 ia5 = NULL; in set_altname() 141 ASN1_IA5STRING_free(ia5); in set_altname()
|
| HD | v3_alt.c | 134 X509V3_add_value_uchar("email", gen->d.ia5->data, &ret); in STACK_OF() 138 X509V3_add_value_uchar("DNS", gen->d.ia5->data, &ret); in STACK_OF() 142 X509V3_add_value_uchar("URI", gen->d.ia5->data, &ret); in STACK_OF() 198 BIO_printf(out, "email:%s", gen->d.ia5->data); in GENERAL_NAME_print() 202 BIO_printf(out, "DNS:%s", gen->d.ia5->data); in GENERAL_NAME_print() 206 BIO_printf(out, "URI:%s", gen->d.ia5->data); in GENERAL_NAME_print() 380 gen->d.ia5 = email; in copy_email() 501 if (!(gen->d.ia5 = M_ASN1_IA5STRING_new()) || in a2i_GENERAL_NAME() 502 !ASN1_STRING_set(gen->d.ia5, (unsigned char *)value, in a2i_GENERAL_NAME()
|
| HD | v3_genn.c | 130 result = ASN1_STRING_cmp(a->d.ia5, b->d.ia5); in GENERAL_NAME_cmp() 178 a->d.ia5 = value; in GENERAL_NAME_set0_value() 211 return a->d.ia5; in GENERAL_NAME_get0_value()
|
| HD | x509v3.h | 202 ASN1_IA5STRING *ia5; /* rfc822Name, dNSName, member 560 ASN1_OCTET_STRING *ia5);
|
| HD | v3_utl.c | 595 if (!append_ia5(&ret, gen->d.ia5)) in STACK_OF()
|
| /NextBSD/crypto/openssl/crypto/asn1/ |
| HD | a_print.c | 66 int ia5 = 0; in ASN1_PRINTABLE_type() local 86 ia5 = 1; in ASN1_PRINTABLE_type() 91 ia5 = 1; in ASN1_PRINTABLE_type() 98 if (ia5) in ASN1_PRINTABLE_type()
|
| /NextBSD/crypto/openssl/crypto/ocsp/ |
| HD | ocsp_ext.c | 534 ASN1_IA5STRING *ia5 = NULL; in OCSP_url_svcloc_new() local 551 if (!(ia5 = ASN1_IA5STRING_new())) in OCSP_url_svcloc_new() 553 if (!ASN1_STRING_set((ASN1_STRING *)ia5, *urls, -1)) in OCSP_url_svcloc_new() 556 ad->location->d.ia5 = ia5; in OCSP_url_svcloc_new()
|
| /NextBSD/contrib/serf/buckets/ |
| HD | ssl_buckets.c | 465 strlen(nm->d.ia5->data) != nm->d.ia5->length) in get_subject_alt_names() 468 p = pstrdup_escape_nul_bytes((const char *)nm->d.ia5->data, in get_subject_alt_names() 469 nm->d.ia5->length, in get_subject_alt_names()
|
| /NextBSD/contrib/wpa/src/crypto/ |
| HD | tls_openssl.c | 1232 if (os_strlen((char *) gen->d.ia5->data) == len && in tls_match_altsubject_component() 1233 os_memcmp(value, gen->d.ia5->data, len) == 0) in tls_match_altsubject_component() 1523 pos = os_malloc(10 + gen->d.ia5->length + 1); in openssl_tls_cert_event() 1543 os_memcpy(pos, gen->d.ia5->data, gen->d.ia5->length); in openssl_tls_cert_event() 1544 pos += gen->d.ia5->length; in openssl_tls_cert_event()
|
| /NextBSD/lib/libfetch/ |
| HD | common.c | 586 ns = (const char *)ASN1_STRING_data(name->d.ia5); in fetch_ssl_verify_altname() 587 nslen = (size_t)ASN1_STRING_length(name->d.ia5); in fetch_ssl_verify_altname()
|