#openssl #probe #openssl-probe

build openssl-probe

Tool for helping to find SSL certificate locations on the system for OpenSSL

6 releases

0.1.6 Jan 23, 2025
0.1.5 Jan 12, 2022
0.1.4 May 11, 2021
0.1.3 Aug 4, 2020
0.1.0 Nov 6, 2016

#20 in Cryptography

Download history 1336303/week @ 2024-12-17 683392/week @ 2024-12-24 925406/week @ 2024-12-31 1620335/week @ 2025-01-07 1664921/week @ 2025-01-14 1707639/week @ 2025-01-21 1841007/week @ 2025-01-28 2046084/week @ 2025-02-04 1992547/week @ 2025-02-11 2259172/week @ 2025-02-18 2134132/week @ 2025-02-25 2534424/week @ 2025-03-04 2509560/week @ 2025-03-11 2919025/week @ 2025-03-18 2685645/week @ 2025-03-25 1992277/week @ 2025-04-01

10,528,979 downloads per month
Used in 6,968 crates (71 directly)

MIT/Apache

10KB
120 lines

openssl-probe

Tool for helping to find SSL certificate locations on the system for OpenSSL

Crates.io docs.rs

Usage

First, add this to your Cargo.toml:

[dependencies]
openssl-probe = "0.1.6"

Then add this to your crate:

fn main() {
    let result = openssl_probe::probe();
    if let Some(dir) = &result.cert_dir {
        //... your code
    }
    if let Some(file) = &result.cert_file {
        //... your code
    }
}

License

openssl-probe is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.

No runtime deps