HomeSort by relevance Sort by last modified time
    Searched refs:ia5 (Results 1 - 17 of 17) sorted by null

  /external/openssl/crypto/x509v3/
v3_ia5.c 66 static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5);
81 ASN1_IA5STRING *ia5)
84 if(!ia5 || !ia5->length) return NULL;
85 if(!(tmp = OPENSSL_malloc(ia5->length + 1))) {
89 memcpy(tmp, ia5->data, ia5->length);
90 tmp[ia5->length] = 0;
97 ASN1_IA5STRING *ia5; local
102 if(!(ia5 = M_ASN1_IA5STRING_new())) goto err
    [all...]
v3_genn.c 130 result = ASN1_STRING_cmp(a->d.ia5, b->d.ia5);
178 a->d.ia5 = value;
212 return a->d.ia5;
v3_alt.c 127 X509V3_add_value_uchar("email",gen->d.ia5->data, &ret);
131 X509V3_add_value_uchar("DNS",gen->d.ia5->data, &ret);
135 X509V3_add_value_uchar("URI",gen->d.ia5->data, &ret);
197 BIO_printf(out, "email:%s",gen->d.ia5->data);
201 BIO_printf(out, "DNS:%s",gen->d.ia5->data);
205 BIO_printf(out, "URI:%s",gen->d.ia5->data);
376 gen->d.ia5 = email;
505 if(!(gen->d.ia5 = M_ASN1_IA5STRING_new()) ||
506 !ASN1_STRING_set(gen->d.ia5, (unsigned char*)value,
x509v3.h 201 ASN1_IA5STRING *ia5;/* rfc822Name, dNSName, uniformResourceIdentifier */ member in union:GENERAL_NAME_st::__anon7916
556 char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, ASN1_OCTET_STRING *ia5);
v3_utl.c 537 if(!append_ia5(&ret, gen->d.ia5)) return NULL;
  /external/chromium_org/third_party/boringssl/src/crypto/x509v3/
v3_ia5.c 70 static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5);
85 ASN1_IA5STRING *ia5)
88 if(!ia5 || !ia5->length) return NULL;
89 if(!(tmp = OPENSSL_malloc(ia5->length + 1))) {
93 memcpy(tmp, ia5->data, ia5->length);
94 tmp[ia5->length] = 0;
101 ASN1_IA5STRING *ia5; local
106 if(!(ia5 = M_ASN1_IA5STRING_new())) goto err
    [all...]
v3nametest.c 163 ASN1_IA5STRING *ia5 = NULL; local
180 ia5 = ASN1_IA5STRING_new();
181 if (ia5 == NULL)
183 if (!ASN1_STRING_set(ia5, name, -1))
189 GENERAL_NAME_set0_value(gen, type, ia5);
190 ia5 = NULL;
202 ASN1_IA5STRING_free(ia5);
v3_genn.c 130 result = ASN1_STRING_cmp(a->d.ia5, b->d.ia5);
178 a->d.ia5 = value;
212 return a->d.ia5;
v3_alt.c 129 X509V3_add_value_uchar("email",gen->d.ia5->data, &ret);
133 X509V3_add_value_uchar("DNS",gen->d.ia5->data, &ret);
137 X509V3_add_value_uchar("URI",gen->d.ia5->data, &ret);
199 BIO_printf(out, "email:%s",gen->d.ia5->data);
203 BIO_printf(out, "DNS:%s",gen->d.ia5->data);
207 BIO_printf(out, "URI:%s",gen->d.ia5->data);
379 gen->d.ia5 = email;
508 if(!(gen->d.ia5 = M_ASN1_IA5STRING_new()) ||
509 !ASN1_STRING_set(gen->d.ia5, (unsigned char*)value,
v3_utl.c 534 if(!append_ia5(&ret, gen->d.ia5)) return NULL;
  /external/openssl/crypto/asn1/
a_print.c 66 int ia5=0; local
86 ia5=1;
92 ia5=1;
98 if (ia5) return(V_ASN1_IA5STRING);
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
a_print.c 66 int ia5=0; local
85 ia5=1;
90 if (ia5) return(V_ASN1_IA5STRING);
  /external/openssl/crypto/ocsp/
ocsp_ext.c 494 ASN1_IA5STRING *ia5 = NULL; local
506 if (!(ia5 = ASN1_IA5STRING_new())) goto err;
507 if (!ASN1_STRING_set((ASN1_STRING*)ia5, *urls, -1)) goto err;
509 ad->location->d.ia5 = ia5;
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 723 if (gen->d.ia5->data[gen->d.ia5->length] != '\0')
727 racoon_hexdump(gen->d.ia5->data, gen->d.ia5->length + 1);
731 len = gen->d.ia5->length + 1;
736 strlcpy(*altname, (char *) gen->d.ia5->data, len);
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
x509v3.h 198 ASN1_IA5STRING *ia5;/* rfc822Name, dNSName, uniformResourceIdentifier */ member in union:GENERAL_NAME_st::__anon16302
555 OPENSSL_EXPORT char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, ASN1_OCTET_STRING *ia5);
  /external/openssl/include/openssl/
x509v3.h 201 ASN1_IA5STRING *ia5;/* rfc822Name, dNSName, uniformResourceIdentifier */ member in union:GENERAL_NAME_st::__anon7948
556 char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, ASN1_OCTET_STRING *ia5);
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]

Completed in 1292 milliseconds