Loading openssl-sys/src/handwritten/evp.rs +0 −13 Original line number Diff line number Diff line Loading @@ -652,16 +652,3 @@ extern "C" { pub fn EVP_EncodeBlock(dst: *mut c_uchar, src: *const c_uchar, src_len: c_int) -> c_int; pub fn EVP_DecodeBlock(dst: *mut c_uchar, src: *const c_uchar, src_len: c_int) -> c_int; } extern "C" { #[cfg(ossl300)] pub fn OSSL_PARAM_construct_uint(key: *const c_char, buf: *mut c_uint) -> OSSL_PARAM; #[cfg(ossl300)] pub fn OSSL_PARAM_construct_utf8_string( key: *const c_char, buf: *mut c_char, bsize: size_t, ) -> OSSL_PARAM; #[cfg(ossl300)] pub fn OSSL_PARAM_construct_end() -> OSSL_PARAM; } openssl-sys/src/handwritten/mod.rs +2 −0 Original line number Diff line number Diff line Loading @@ -15,6 +15,7 @@ pub use self::hmac::*; pub use self::kdf::*; pub use self::object::*; pub use self::ocsp::*; pub use self::params::*; pub use self::pem::*; pub use self::pkcs12::*; pub use self::pkcs7::*; Loading Loading @@ -51,6 +52,7 @@ mod hmac; mod kdf; mod object; mod ocsp; mod params; mod pem; mod pkcs12; mod pkcs7; Loading openssl-sys/src/handwritten/params.rs 0 → 100644 +15 −0 Original line number Diff line number Diff line use super::super::*; use libc::*; extern "C" { #[cfg(ossl300)] pub fn OSSL_PARAM_construct_uint(key: *const c_char, buf: *mut c_uint) -> OSSL_PARAM; #[cfg(ossl300)] pub fn OSSL_PARAM_construct_utf8_string( key: *const c_char, buf: *mut c_char, bsize: size_t, ) -> OSSL_PARAM; #[cfg(ossl300)] pub fn OSSL_PARAM_construct_end() -> OSSL_PARAM; } Loading
openssl-sys/src/handwritten/evp.rs +0 −13 Original line number Diff line number Diff line Loading @@ -652,16 +652,3 @@ extern "C" { pub fn EVP_EncodeBlock(dst: *mut c_uchar, src: *const c_uchar, src_len: c_int) -> c_int; pub fn EVP_DecodeBlock(dst: *mut c_uchar, src: *const c_uchar, src_len: c_int) -> c_int; } extern "C" { #[cfg(ossl300)] pub fn OSSL_PARAM_construct_uint(key: *const c_char, buf: *mut c_uint) -> OSSL_PARAM; #[cfg(ossl300)] pub fn OSSL_PARAM_construct_utf8_string( key: *const c_char, buf: *mut c_char, bsize: size_t, ) -> OSSL_PARAM; #[cfg(ossl300)] pub fn OSSL_PARAM_construct_end() -> OSSL_PARAM; }
openssl-sys/src/handwritten/mod.rs +2 −0 Original line number Diff line number Diff line Loading @@ -15,6 +15,7 @@ pub use self::hmac::*; pub use self::kdf::*; pub use self::object::*; pub use self::ocsp::*; pub use self::params::*; pub use self::pem::*; pub use self::pkcs12::*; pub use self::pkcs7::*; Loading Loading @@ -51,6 +52,7 @@ mod hmac; mod kdf; mod object; mod ocsp; mod params; mod pem; mod pkcs12; mod pkcs7; Loading
openssl-sys/src/handwritten/params.rs 0 → 100644 +15 −0 Original line number Diff line number Diff line use super::super::*; use libc::*; extern "C" { #[cfg(ossl300)] pub fn OSSL_PARAM_construct_uint(key: *const c_char, buf: *mut c_uint) -> OSSL_PARAM; #[cfg(ossl300)] pub fn OSSL_PARAM_construct_utf8_string( key: *const c_char, buf: *mut c_char, bsize: size_t, ) -> OSSL_PARAM; #[cfg(ossl300)] pub fn OSSL_PARAM_construct_end() -> OSSL_PARAM; }