wolfcrypt-sys 0.2.1

Auto-generated Rust FFI bindings to wolfSSL via bindgen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Raw FFI bindings to wolfSSL / wolfCrypt generated by bindgen.
//!
//! No safe wrappers — just the raw C interface. Use the `wolfcrypt` crate
//! for safe, idiomatic Rust abstractions.

#![no_std]
#![allow(
    non_upper_case_globals,
    non_camel_case_types,
    non_snake_case,
    dead_code,
    improper_ctypes,
    unsafe_op_in_unsafe_fn,
    clippy::all
)]

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));