Lines Matching defs:email
168 if (!x509v3_add_len_value_uchar("email", gen->d.ia5->data,
266 BIO_printf(out, "email:");
396 if (ossl_v3_name_cmp(cnf->name, "email") == 0
400 } else if (ossl_v3_name_cmp(cnf->name, "email") == 0
418 * Copy any email addresses in a certificate or request to GENERAL_NAMES
424 ASN1_IA5STRING *email = NULL;
441 /* Now add any email address(es) to STACK */
445 email = ASN1_STRING_dup(X509_NAME_ENTRY_get_data(ne));
451 if (email == NULL || (gen = GENERAL_NAME_new()) == NULL) {
455 gen->d.ia5 = email;
456 email = NULL;
469 ASN1_IA5STRING_free(email);
617 if (!ossl_v3_name_cmp(name, "email"))