openssl_sys/handwritten/
cmac.rs

1use libc::*;
2
3use super::super::*;
4
5#[cfg(not(osslconf = "OPENSSL_NO_DEPRECATED_3_0"))]
6extern "C" {
7    pub fn CMAC_CTX_new() -> *mut CMAC_CTX;
8    pub fn CMAC_CTX_free(ctx: *mut CMAC_CTX);
9    pub fn CMAC_Init(
10        ctx: *mut CMAC_CTX,
11        key: *const c_void,
12        len: size_t,
13        cipher: *const EVP_CIPHER,
14        impl_: *mut ENGINE,
15    ) -> c_int;
16    pub fn CMAC_Update(ctx: *mut CMAC_CTX, data: *const c_void, len: size_t) -> c_int;
17    pub fn CMAC_Final(ctx: *mut CMAC_CTX, out: *mut c_uchar, len: *mut size_t) -> c_int;
18    pub fn CMAC_CTX_copy(dst: *mut CMAC_CTX, src: *const CMAC_CTX) -> c_int;
19}