openssl-probe 0.2.1

A library for helping to find system-wide trust anchor ("root") certificate locations based on paths typically used by `openssl`.
Documentation
1
2
3
4
5
6
fn main() {
    let r = openssl_probe::probe();

    println!("cert_dir: {:?}", r.cert_dir);
    println!("cert_file: {:?}", r.cert_file);
}