/* * Copyright (c) 2001-2022, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #ifndef MBEDTLS_CMAC_ALT_H #define MBEDTLS_CMAC_ALT_H #include "mbedtls/build_info.h" #include #include /* hide internal implementation of the struct. Allocate enough space for it.*/ #define MBEDTLS_CMAC_CONTEXT_SIZE_IN_WORDS 33 #ifdef __cplusplus extern "C" { #endif /** * \brief CMAC cipher context structure */ struct mbedtls_cmac_context_t{ /*! Internal buffer */ uint32_t buf[MBEDTLS_CMAC_CONTEXT_SIZE_IN_WORDS]; }; #ifdef __cplusplus } #endif #endif /* MBEDTLS_CMAC_ALT_H */