We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 88b0686 + f4a23c2 commit c9a5be8Copy full SHA for c9a5be8
openssl-sys/src/handwritten/evp.rs
@@ -520,7 +520,12 @@ extern "C" {
520
length: c_long,
521
) -> *mut EVP_PKEY;
522
523
+ #[cfg(not(osslconf = "OPENSSL_NO_DEPRECATED_3_0"))]
524
pub fn EVP_PKEY_cmp(a: *const EVP_PKEY, b: *const EVP_PKEY) -> c_int;
525
+ #[cfg(ossl300)]
526
+ pub fn EVP_PKEY_eq(a: *const EVP_PKEY, b: *const EVP_PKEY) -> c_int;
527
528
+ pub fn EVP_PKEY_parameters_eq(a: *const EVP_PKEY, b: *const EVP_PKEY) -> c_int;
529
530
pub fn EVP_PKEY_copy_parameters(to: *mut EVP_PKEY, from: *const EVP_PKEY) -> c_int;
531
0 commit comments