Searched refs:subject_alt_names (Results 1 – 10 of 10) sorted by relevance
/third_party/rust/crates/rust-openssl/openssl/src/x509/ |
D | tests.rs | 162 let subject_alt_names = cert.subject_alt_names().unwrap(); in test_subject_alt_name() localVariable 163 assert_eq!(5, subject_alt_names.len()); in test_subject_alt_name() 164 assert_eq!(Some("example.com"), subject_alt_names[0].dnsname()); in test_subject_alt_name() 165 assert_eq!(subject_alt_names[1].ipaddress(), Some(&[127, 0, 0, 1][..])); in test_subject_alt_name() 167 subject_alt_names[2].ipaddress(), in test_subject_alt_name() 170 assert_eq!(Some("test@example.com"), subject_alt_names[3].email()); in test_subject_alt_name() 171 assert_eq!(Some("http://www.example.com"), subject_alt_names[4].uri()); in test_subject_alt_name() 243 let subject_alt_names = cert.subject_alt_names().unwrap(); in test_subject_alt_name_iter() localVariable 244 let mut subject_alt_names_iter = subject_alt_names.iter(); in test_subject_alt_name_iter() 1088 .subject_alt_names() in ipaddress_as_subject_alternative_name_is_formatted_in_debug() [all …]
|
D | mod.rs | 430 pub fn subject_alt_names(&self) -> Option<Stack<GeneralName>> { in subject_alt_names() method 802 if let Some(subject_alt_names) = &self.subject_alt_names() { in fmt() 803 debug_struct.field("subject_alt_names", subject_alt_names); in fmt()
|
/third_party/mbedtls/library/ |
D | x509_csr.c | 140 &csr->subject_alt_names)) != 0) { in x509_csr_parse_extensions() 521 &csr->subject_alt_names, in mbedtls_x509_csr_info() 578 mbedtls_asn1_sequence_free(csr->subject_alt_names.next); in mbedtls_x509_csr_free()
|
D | x509_crt.c | 890 &crt->subject_alt_names)) != 0) { in x509_get_crt_ext() 1700 &crt->subject_alt_names, in mbedtls_x509_crt_info() 2579 for (cur = &crt->subject_alt_names; cur != NULL; cur = cur->next) { in x509_crt_verify_name() 2838 mbedtls_asn1_sequence_free(cert_cur->subject_alt_names.next); in mbedtls_x509_crt_free()
|
/third_party/mbedtls/include/mbedtls/ |
D | x509_csr.h | 63 …mbedtls_x509_sequence subject_alt_names; /**< Optional list of raw entries of Subject Alternati… member
|
D | x509_crt.h | 79 …mbedtls_x509_sequence subject_alt_names; /**< Optional list of raw entries of Subject Alternati… member
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
D | connector.rs | 462 match cert.subject_alt_names() {
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_x509parse.function | 447 cur = &crt.subject_alt_names;
|
/third_party/libcoap/src/ |
D | coap_mbedtls.c | 304 mbedtls_asn1_sequence *seq = &crt->subject_alt_names; in get_san_or_cn_from_cert()
|
/third_party/mbedtls/ |
D | ChangeLog | 2207 * List all SAN types in the subject_alt_names field of the certificate.
|