/* * Copyright (C) 2021 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ #pragma once /** * @ingroup sys_psa_crypto * @{ * * @file crypto_struct.h * @brief Structure definitions for PSA Crypto * * @author Lena Boeckmann * */ #ifdef __cplusplus extern "C" { #endif #include "crypto_types.h" #include "crypto_sizes.h" #include "crypto_contexts.h" #include "aead/types.h" #include "cipher/types.h" #include "hash/types.h" #include "key_derivation/types.h" #include "mac/types.h" #ifdef __cplusplus } #endif /** @} */