We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5a4958 commit 3834005Copy full SHA for 3834005
openssl-sys/src/handwritten/evp.rs
@@ -413,22 +413,6 @@ cfg_if! {
413
pub fn EVP_PKEY_get_bits(key: *const EVP_PKEY) -> c_int;
414
pub fn EVP_PKEY_get_security_bits(key: *const EVP_PKEY) -> c_int;
415
}
416
-
417
- #[inline]
418
- pub unsafe fn EVP_PKEY_id(pkey: *const EVP_PKEY) -> c_int {
419
- EVP_PKEY_get_id(pkey)
420
- }
421
422
423
- pub unsafe fn EVP_PKEY_bits(pkey: *const EVP_PKEY) -> c_int {
424
- EVP_PKEY_get_bits(pkey)
425
426
427
428
- pub unsafe fn EVP_PKEY_security_bits(pkey: *const EVP_PKEY) -> c_int {
429
- EVP_PKEY_get_security_bits(pkey)
430
431
432
} else {
433
extern "C" {
434
pub fn EVP_PKEY_id(pkey: *const EVP_PKEY) -> c_int;
0 commit comments