// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC use paste::paste; use std::os::raw::{c_char, c_long, c_void}; #[allow(unused_macros)] macro_rules! use_bindings { ($bindings:ident) => { mod $bindings; pub use $bindings::*; }; } macro_rules! platform_binding { ($platform:ident) => { paste! { #[cfg(all($platform, not(feature = "ssl"), not(use_bindgen_generated)))] use_bindings!([< $platform _crypto >]); #[cfg(all($platform, feature = "ssl", not(use_bindgen_generated)))] use_bindings!([< $platform _crypto_ssl >]); } }; } platform_binding!(linux_x86); platform_binding!(linux_x86_64); platform_binding!(linux_aarch64); platform_binding!(macos_x86_64); #[cfg(use_bindgen_generated)] mod generated { #![allow( unused_imports, non_camel_case_types, non_snake_case, non_upper_case_globals, improper_ctypes, clippy::cast_lossless, clippy::cast_possible_truncation, clippy::default_trait_access, clippy::must_use_candidate, clippy::not_unsafe_ptr_arg_deref, clippy::ptr_as_ptr, clippy::semicolon_if_nothing_returned, clippy::too_many_lines, clippy::unreadable_literal, clippy::used_underscore_binding, clippy::useless_transmute )] include!(concat!(env!("OUT_DIR"), "/bindings.rs")); } #[cfg(use_bindgen_generated)] pub use generated::*; #[allow(non_snake_case)] #[must_use] pub fn ERR_GET_LIB(packed_error: u32) -> i32 { unsafe { ERR_GET_LIB_RUST(packed_error) } } #[allow(non_snake_case)] #[must_use] pub fn ERR_GET_REASON(packed_error: u32) -> i32 { unsafe { ERR_GET_REASON_RUST(packed_error) } } #[allow(non_snake_case)] #[must_use] pub fn ERR_GET_FUNC(packed_error: u32) -> i32 { unsafe { ERR_GET_FUNC_RUST(packed_error) } } #[allow(non_snake_case, clippy::not_unsafe_ptr_arg_deref)] pub fn BIO_get_mem_data(b: *mut BIO, pp: *mut *mut c_char) -> c_long { unsafe { BIO_ctrl(b, BIO_CTRL_INFO, 0, pp.cast::()) } } pub fn init() { unsafe { CRYPTO_library_init() } }