Searched refs:subject_alt_names (Results 1 - 7 of 7) sorted by relevance
/third_party/rust/crates/rust-openssl/openssl/src/x509/ |
H A D | tests.rs | 162 let subject_alt_names = cert.subject_alt_names().unwrap(); in test_subject_alt_name() 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() in test_subject_alt_name_iter() [all...] |
H A D | mod.rs | 430 pub fn subject_alt_names(&self) -> Option<Stack<GeneralName>> { in subject_alt_names() functions 802 if let Some(subject_alt_names) = &self.subject_alt_names() { 803 debug_struct.field("subject_alt_names", subject_alt_names);
|
/third_party/mbedtls/library/ |
H A D | x509_csr.c | 162 &csr->subject_alt_names)) != 0) { in x509_csr_parse_extensions() 573 &csr->subject_alt_names, in mbedtls_x509_csr_info() 630 mbedtls_asn1_sequence_free(csr->subject_alt_names.next); in mbedtls_x509_csr_free()
|
H A D | x509_crt.c | 1006 &crt->subject_alt_names)) != 0) { in x509_get_crt_ext() 1838 &crt->subject_alt_names, in mbedtls_x509_crt_info() 2990 if (x509_crt_check_san(&crt->subject_alt_names, cn, cn_len) == 0) { in x509_crt_verify_name() 3242 mbedtls_asn1_sequence_free(cert_cur->subject_alt_names.next); in mbedtls_x509_crt_free()
|
/third_party/mbedtls/include/mbedtls/ |
H A D | x509_csr.h | 51 mbedtls_x509_sequence subject_alt_names; /**< Optional list of raw entries of Subject Alternative Names extension. These can be later parsed by mbedtls_x509_parse_subject_alt_name. */ member
|
H A D | x509_crt.h | 66 mbedtls_x509_sequence subject_alt_names; /**< Optional list of raw entries of Subject Alternative Names extension. These can be later parsed by mbedtls_x509_parse_subject_alt_name. */ member
|
/third_party/libcoap/src/ |
H A D | coap_mbedtls.c | 304 mbedtls_asn1_sequence *seq = &crt->subject_alt_names; in get_san_or_cn_from_cert()
|
Completed in 14 milliseconds