HomeSort by: relevance | last modified time | path
    Searched refs:ia5 (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/crypto/external/apache2/openssl/dist/crypto/x509/
v3_ia5.c 28 char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5)
32 if (ia5 == NULL || ia5->length <= 0)
34 if ((tmp = OPENSSL_malloc(ia5->length + 1)) == NULL)
36 memcpy(tmp, ia5->data, ia5->length);
37 tmp[ia5->length] = 0;
44 ASN1_IA5STRING *ia5; local
49 if ((ia5 = ASN1_IA5STRING_new()) == NULL) {
53 if (!ASN1_STRING_set((ASN1_STRING *)ia5, str, strlen(str)))
    [all...]
v3_san.c 168 if (!x509v3_add_len_value_uchar("email", gen->d.ia5->data,
169 gen->d.ia5->length, &ret))
174 if (!x509v3_add_len_value_uchar("DNS", gen->d.ia5->data,
175 gen->d.ia5->length, &ret))
180 if (!x509v3_add_len_value_uchar("URI", gen->d.ia5->data,
181 gen->d.ia5->length, &ret))
267 ASN1_STRING_print(out, gen->d.ia5);
272 ASN1_STRING_print(out, gen->d.ia5);
277 ASN1_STRING_print(out, gen->d.ia5);
452 gen->d.ia5 = email
    [all...]
v3_genn.c 143 result = ASN1_STRING_cmp(a->d.ia5, b->d.ia5);
194 a->d.ia5 = value;
229 return a->d.ia5;
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
v3_ia5.c 28 char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5)
32 if (ia5 == NULL || ia5->length <= 0)
34 if ((tmp = OPENSSL_malloc(ia5->length + 1)) == NULL) {
38 memcpy(tmp, ia5->data, ia5->length);
39 tmp[ia5->length] = 0;
46 ASN1_IA5STRING *ia5; local
51 if ((ia5 = ASN1_IA5STRING_new()) == NULL)
53 if (!ASN1_STRING_set((ASN1_STRING *)ia5, str, strlen(str)))
    [all...]
v3_san.c 168 if (!x509v3_add_len_value_uchar("email", gen->d.ia5->data,
169 gen->d.ia5->length, &ret))
174 if (!x509v3_add_len_value_uchar("DNS", gen->d.ia5->data,
175 gen->d.ia5->length, &ret))
180 if (!x509v3_add_len_value_uchar("URI", gen->d.ia5->data,
181 gen->d.ia5->length, &ret))
267 ASN1_STRING_print(out, gen->d.ia5);
272 ASN1_STRING_print(out, gen->d.ia5);
277 ASN1_STRING_print(out, gen->d.ia5);
456 gen->d.ia5 = email
    [all...]
v3_genn.c 115 result = ASN1_STRING_cmp(a->d.ia5, b->d.ia5);
166 a->d.ia5 = value;
201 return a->d.ia5;
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
v3_ia5.c 28 char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5)
32 if (!ia5 || !ia5->length)
34 if ((tmp = OPENSSL_malloc(ia5->length + 1)) == NULL) {
38 memcpy(tmp, ia5->data, ia5->length);
39 tmp[ia5->length] = 0;
46 ASN1_IA5STRING *ia5; local
52 if ((ia5 = ASN1_IA5STRING_new()) == NULL)
54 if (!ASN1_STRING_set((ASN1_STRING *)ia5, str, strlen(str)))
    [all...]
v3_alt.c 103 if (!x509v3_add_len_value_uchar("email", gen->d.ia5->data,
104 gen->d.ia5->length, &ret))
109 if (!x509v3_add_len_value_uchar("DNS", gen->d.ia5->data,
110 gen->d.ia5->length, &ret))
115 if (!x509v3_add_len_value_uchar("URI", gen->d.ia5->data,
116 gen->d.ia5->length, &ret))
178 ASN1_STRING_print(out, gen->d.ia5);
183 ASN1_STRING_print(out, gen->d.ia5);
188 ASN1_STRING_print(out, gen->d.ia5);
377 gen->d.ia5 = email
    [all...]
v3_genn.c 115 result = ASN1_STRING_cmp(a->d.ia5, b->d.ia5);
166 a->d.ia5 = value;
201 return a->d.ia5;
  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
a_print.c 18 int ia5 = 0; local
30 ia5 = 1;
36 if (ia5)
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
a_print.c 18 int ia5 = 0; local
30 ia5 = 1;
36 if (ia5)
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
a_print.c 18 int ia5 = 0; local
30 ia5 = 1;
36 if (ia5)
  /src/crypto/external/apache2/openssl/dist/crypto/ocsp/
ocsp_ext.c 430 ASN1_IA5STRING *ia5 = NULL; local
447 if ((ia5 = ASN1_IA5STRING_new()) == NULL)
449 if (!ASN1_STRING_set((ASN1_STRING *)ia5, *urls, -1))
453 ad->location->d.ia5 = ia5;
454 ia5 = NULL;
462 ASN1_IA5STRING_free(ia5);
  /src/crypto/external/apache2/openssl/dist/test/
v3nametest.c 129 ASN1_IA5STRING *ia5 = NULL; local
146 ia5 = ASN1_IA5STRING_new();
147 if (ia5 == NULL)
149 if (!ASN1_STRING_set(ia5, name, -1))
154 GENERAL_NAME_set0_value(gen, type, ia5);
155 ia5 = NULL;
168 ASN1_IA5STRING_free(ia5);
  /src/crypto/external/bsd/openssl/dist/crypto/ocsp/
ocsp_ext.c 436 ASN1_IA5STRING *ia5 = NULL; local
453 if ((ia5 = ASN1_IA5STRING_new()) == NULL)
455 if (!ASN1_STRING_set((ASN1_STRING *)ia5, *urls, -1))
459 ad->location->d.ia5 = ia5;
460 ia5 = NULL;
468 ASN1_IA5STRING_free(ia5);
  /src/crypto/external/bsd/openssl/dist/test/
v3nametest.c 129 ASN1_IA5STRING *ia5 = NULL; local
146 ia5 = ASN1_IA5STRING_new();
147 if (ia5 == NULL)
149 if (!ASN1_STRING_set(ia5, name, -1))
154 GENERAL_NAME_set0_value(gen, type, ia5);
155 ia5 = NULL;
167 ASN1_IA5STRING_free(ia5);
  /src/crypto/external/bsd/openssl.old/dist/crypto/ocsp/
ocsp_ext.c 436 ASN1_IA5STRING *ia5 = NULL; local
453 if ((ia5 = ASN1_IA5STRING_new()) == NULL)
455 if (!ASN1_STRING_set((ASN1_STRING *)ia5, *urls, -1))
459 ad->location->d.ia5 = ia5;
460 ia5 = NULL;
468 ASN1_IA5STRING_free(ia5);
  /src/crypto/external/bsd/openssl.old/dist/test/
v3nametest.c 133 ASN1_IA5STRING *ia5 = NULL; local
150 ia5 = ASN1_IA5STRING_new();
151 if (ia5 == NULL)
153 if (!ASN1_STRING_set(ia5, name, -1))
158 GENERAL_NAME_set0_value(gen, type, ia5);
159 ia5 = NULL;
171 ASN1_IA5STRING_free(ia5);
  /src/external/bsd/wpa/dist/src/crypto/
tls_wolfssl.c 616 if ((size_t) wolfSSL_ASN1_STRING_length(gen->d.ia5) == len &&
617 os_memcmp(value, wolfSSL_ASN1_STRING_data(gen->d.ia5),
724 wolfSSL_ASN1_STRING_data(gen->d.ia5),
725 wolfSSL_ASN1_STRING_length(gen->d.ia5));
727 (const char *) wolfSSL_ASN1_STRING_data(gen->d.ia5),
728 wolfSSL_ASN1_STRING_length(gen->d.ia5), match,
936 pos = os_malloc(10 + wolfSSL_ASN1_STRING_length(gen->d.ia5) +
957 os_memcpy(pos, wolfSSL_ASN1_STRING_data(gen->d.ia5),
958 wolfSSL_ASN1_STRING_length(gen->d.ia5));
959 pos += wolfSSL_ASN1_STRING_length(gen->d.ia5);
    [all...]
tls_openssl.c 1857 if (os_strlen((char *) gen->d.ia5->data) == len &&
1858 os_memcmp(value, gen->d.ia5->data, len) == 0)
2423 pos = os_malloc(10 + gen->d.ia5->length + 1);
2443 os_memcpy(pos, gen->d.ia5->data, gen->d.ia5->length);
2444 pos += gen->d.ia5->length;
  /src/crypto/dist/ipsec-tools/src/racoon/
crypto_openssl.c 571 if (gen->d.ia5->data[gen->d.ia5->length] != '\0')
575 racoon_hexdump(gen->d.ia5->data, gen->d.ia5->length + 1);
579 len = gen->d.ia5->length + 1;
584 strlcpy(*altname, (char *) gen->d.ia5->data, len);
  /src/external/bsd/openldap/dist/libraries/libldap/
tls_o.c 894 sn = (char *) ASN1_STRING_data(gn->d.ia5);
895 sl = ASN1_STRING_length(gn->d.ia5);
915 sn = (char *) ASN1_STRING_data(gn->d.ia5);
916 sl = ASN1_STRING_length(gn->d.ia5);
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
x509v3.h 148 ASN1_IA5STRING *ia5; /* rfc822Name, dNSName, member in union:GENERAL_NAME_st::__anon2169
480 char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5);
508 const ASN1_OCTET_STRING *ia5);
  /src/crypto/external/apache2/openssl/dist/include/openssl/
x509v3.h.in 177 ASN1_IA5STRING *ia5; /* rfc822Name, dNSName,
571 char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5);
602 const ASN1_OCTET_STRING *ia5);
  /src/crypto/external/bsd/openssl/dist/include/openssl/
x509v3.h.in 166 ASN1_IA5STRING *ia5; /* rfc822Name, dNSName,
536 char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5);
567 const ASN1_OCTET_STRING *ia5);

Completed in 58 milliseconds

1 2