aes_alt.h 281 B

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