Lines Matching refs:email
82 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email);
572 ASN1_IA5STRING *email;
576 /* Now add any email address(es) to STACK */
582 email = X509_NAME_ENTRY_get_data(ne);
583 if (!append_ia5(&ret, email))
601 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email)
605 if (email->type != V_ASN1_IA5STRING)
607 if (!email->data || !email->length)
614 if (sk_OPENSSL_STRING_find(*sk, NULL, (char *)email->data))
616 emtmp = BUF_strdup((char *)email->data);