• Home
  • Raw
  • Download

Lines Matching full:openssl

1 //! Bindings to OpenSSL
3 //! This crate provides a safe interface to the popular OpenSSL cryptography library. OpenSSL versi…
8 //! Both OpenSSL libraries and headers are required to build this crate. There are multiple options…
9 //! OpenSSL.
13 //! If the `vendored` Cargo feature is enabled, the `openssl-src` crate will be used to compile and…
14 //! a copy of OpenSSL. The build process requires a C compiler, perl (and perl-core), and make. The…
15 //! the newest OpenSSL release, and changes to the version are *not* considered breaking changes.
19 //! openssl = { version = "0.10", features = ["vendored"] }
23 //! `openssl-probe` crate can be used to do that instead.
27 //! The `openssl-sys` crate will automatically detect OpenSSL installations via Homebrew on macOS a…
32 //! $ brew install openssl@3
35 //! $ sudo port install openssl
38 //! $ sudo pkgin install openssl
41 //! $ sudo pacman -S pkg-config openssl
47 //! $ sudo dnf install pkg-config openssl-devel
50 //! $ apk add pkgconfig openssl-dev
55 //! A set of environment variables can be used to point `openssl-sys` towards an OpenSSL installati…
58 //! * `OPENSSL_DIR` - If specified, the directory of an OpenSSL installation. The directory should …
60 …DIR` and `OPENSSL_INCLUDE_DIR` - If specified, the directories containing the OpenSSL libraries and
61 //! headers respectively. This can be used if the OpenSSL installation is split in a nonstandar…
62 //! * `OPENSSL_STATIC` - If set, the crate will statically link to OpenSSL rather than dynamically …
65 //! * `OPENSSL_NO_VENDOR` - If set, always find OpenSSL in the system, even if the `vendored` featu…
72 //! APIs have been added to and removed from the various supported OpenSSL versions, and this libra…
74 //! will be present when building against one version of OpenSSL but not when building against anot…
77 …! A build script can be used to detect the OpenSSL or LibreSSL version at compile time if needed. …
79 //! environment variables to build scripts. The version format is a hex-encoding of the OpenSSL rel…
83 //! against OpenSSL versions that don't support TLSv1.3:
89 //! openssl-sys = "0.9"
90 //! openssl = "0.10"
112 //! use openssl::ssl::{SslConnector, SslMethod};
116 //! // set_ciphersuites was added in OpenSSL 1.1.1, so we can only call it when linking against tha…
120 #![doc(html_root_url = "https://docs.rs/openssl/0.10")]