Line | Count | Source (jump to first uncovered line) |
1 | use crate::{CertPaths, CertificateResult}; | |
2 | ||
3 | 0 | pub fn load_native_certs() -> CertificateResult { |
4 | 0 | let likely_locations = openssl_probe::probe(); |
5 | 0 | CertPaths { |
6 | 0 | file: likely_locations.cert_file, |
7 | 0 | dir: likely_locations.cert_dir, |
8 | 0 | } |
9 | 0 | .load() |
10 | 0 | } |