• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H03-May-2022-98

src/H03-May-2022-13389

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.gitignoreH A D01-Jan-197018 32

Cargo.tomlH A D01-Jan-1970891 2220

Cargo.toml.orig-cargoH A D01-Jan-1970370 1211

LICENSE-APACHEH A D01-Jan-197010.6 KiB202169

LICENSE-MITH A D01-Jan-19701 KiB2622

README.mdH A D01-Jan-1970823 3422

README.md

1# openssl-probe
2
3Tool for helping to find SSL certificate locations on the system for OpenSSL
4
5[![Crates.io](https://img.shields.io/crates/v/openssl-probe.svg?maxAge=2592000)](https://crates.io/crates/openssl-probe)
6[![docs.rs](https://docs.rs/openssl-probe/badge.svg)](https://docs.rs/openssl-probe/)
7
8## Usage
9
10First, add this to your `Cargo.toml`:
11
12```toml
13[dependencies]
14openssl-probe = "0.1.2"
15```
16
17Then add this to your crate:
18
19```rust
20extern crate openssl_probe;
21
22fn main() {
23    openssl_probe::init_ssl_cert_env_vars();
24    //... your code
25}
26```
27
28## License
29
30`openssl-probe` is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0),
31with portions covered by various BSD-like licenses.
32
33See [LICENSE-APACHE](./LICENSE-APACHE), and [LICENSE-MIT](LICENSE-MIT) for details.
34