35 lines
1009 B
C
35 lines
1009 B
C
/**
|
|
******************************************************************************
|
|
* @file PKA/PKA_ModularExponentiation/Inc/plaintext.h
|
|
* @author MCD Application Team
|
|
* @brief This file contains the headers of the plaintext buffers.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2020 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __PKV_H
|
|
#define __PKV_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern const uint8_t plaintext_bin[];
|
|
extern const uint32_t plaintext_bin_len;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __STM32WLxx_IT_H */
|