12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /**
- * @file aes.h
- * @brief AES (Advanced Encryption Standard)
- *
- * @section License
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
- *
- * Copyright (C) 2010-2023 Oryx Embedded SARL. All rights reserved.
- *
- * This file is part of CycloneCRYPTO Open.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * @author Oryx Embedded SARL (www.oryx-embedded.com)
- * @version 2.2.4
- **/
- #ifndef _AES_H
- #define _AES_H
- //Dependencies
- #include "core/crypto.h"
- //Application specific context
- #ifndef AES_PRIVATE_CONTEXT
- #define AES_PRIVATE_CONTEXT
- #endif
- //AES block size
- #define AES_BLOCK_SIZE 16
- //Common interface for encryption algorithms
- #define AES_CIPHER_ALGO (&aesCipherAlgo)
- //C++ guard
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * @brief AES algorithm context
- **/
- typedef struct
- {
- uint_t nr;
- uint32_t ek[60];
- uint32_t dk[60];
- AES_PRIVATE_CONTEXT
- } AesContext;
- //AES related constants
- extern const CipherAlgo aesCipherAlgo;
- //AES related functions
- error_t aesInit(AesContext *context, const uint8_t *key, size_t keyLen);
- void aesEncryptBlock(AesContext *context, const uint8_t *input,
- uint8_t *output);
- void aesDecryptBlock(AesContext *context, const uint8_t *input,
- uint8_t *output);
- void aesDeinit(AesContext *context);
- //C++ guard
- #ifdef __cplusplus
- }
- #endif
- #endif
|