Home
last modified time | relevance | path

Searched refs:subject_alt_names (Results 1 – 10 of 10) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl/src/x509/
Dtests.rs162 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 …]
Dmod.rs430 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/
Dx509_csr.c140 &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()
Dx509_crt.c890 &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/
Dx509_csr.h63 …mbedtls_x509_sequence subject_alt_names; /**< Optional list of raw entries of Subject Alternati… member
Dx509_crt.h79 …mbedtls_x509_sequence subject_alt_names; /**< Optional list of raw entries of Subject Alternati… member
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dconnector.rs462 match cert.subject_alt_names() {
/third_party/mbedtls/tests/suites/
Dtest_suite_x509parse.function447 cur = &crt.subject_alt_names;
/third_party/libcoap/src/
Dcoap_mbedtls.c304 mbedtls_asn1_sequence *seq = &crt->subject_alt_names; in get_san_or_cn_from_cert()
/third_party/mbedtls/
DChangeLog2207 * List all SAN types in the subject_alt_names field of the certificate.