mozilla_root_ca/rustls.rs
1use crate::*;
2
3use rustls_pki_types::CertificateDer;
4
5pub const RUSTLS_CERTIFICATE_DER_LIST: [CertificateDer<'static>; DER_LIST_LEN] = {
6 let mut list = [const { CertificateDer::from_slice(b"") }; DER_LIST_LEN];
7
8 let mut i = 0;
9 while i < DER_LIST_LEN {
10 list[i] = CertificateDer::from_slice(DER_LIST[i]);
11 i += 1;
12 }
13
14 list
15};
16