Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add OpenSSL 1.1.X Engine Bindings #2006

Closed
wants to merge 19 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
exported engine bindings for openssl 1.1.*
brimonk committed Sep 8, 2023
commit 7b5dd5c3f2c37e6d0472403d3f1e379295866196
2 changes: 2 additions & 0 deletions openssl-sys/src/handwritten/mod.rs
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@ pub use self::crypto::*;
pub use self::dh::*;
pub use self::dsa::*;
pub use self::ec::*;
pub use self::engine::*;
pub use self::err::*;
pub use self::evp::*;
pub use self::hmac::*;
@@ -45,6 +46,7 @@ mod crypto;
mod dh;
mod dsa;
mod ec;
#[cfg(all(ossl110))]
mod engine;
mod err;
mod evp;
4 changes: 4 additions & 0 deletions systest/build.rs
Original file line number Diff line number Diff line change
@@ -79,6 +79,10 @@ fn main() {
cfg.header("openssl/kdf.h");
}

if 0x10100000 <= version && version < 0x30000000 {
cfg.header("openssl/engine.h");
}

if version >= 0x30000000 {
cfg.header("openssl/provider.h");
}