Home | History | Annotate | Download | only in x509v3

Lines Matching refs:email

72 static int append_ia5(STACK **sk, ASN1_IA5STRING *email);
518 ASN1_IA5STRING *email;
521 /* Now add any email address(es) to STACK */
527 email = X509_NAME_ENTRY_get_data(ne);
528 if(!append_ia5(&ret, email)) return NULL;
544 static int append_ia5(STACK **sk, ASN1_IA5STRING *email)
548 if(email->type != V_ASN1_IA5STRING) return 1;
549 if(!email->data || !email->length) return 1;
553 if(sk_find(*sk, (char *)email->data) != -1) return 1;
554 emtmp = BUF_strdup((char *)email->data);