blob: 949e44769db15acfc59b27261c3e426c7d3ea469 [file] [log] [blame] [edit]
use crate::{CertPaths, CertificateResult};
pub fn load_native_certs() -> CertificateResult {
CertPaths {
file: None,
dirs: vec!["/apex/com.android.conscrypt/cacerts".into()],
}
.load()
}