Lines Matching defs:email
85 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email);
701 ASN1_IA5STRING *email;
705 /* Now add any email address(es) to STACK */
712 email = X509_NAME_ENTRY_get_data(ne);
713 if (!append_ia5(&ret, email))
733 append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email)
738 if (email->type != V_ASN1_IA5STRING)
740 if (!email->data || !email->length)
747 if (sk_OPENSSL_STRING_find(*sk, (char *)email->data) != -1)
749 emtmp = strdup((char *)email->data);