hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: BSD-2-Clause */
/* Copyright (c) 2020, Linaro Limited */
 
#ifndef __MBEDTLS_AES_ALT_H
#define __MBEDTLS_AES_ALT_H
 
typedef struct mbedtls_aes_context {
   uint32_t key[60];
   unsigned int round_count;
} mbedtls_aes_context;
 
#endif /*__MBEDTLS_AES_ALT_H*/