xref: /optee_os/core/pta/stm32mp/rproc_pub_key.h (revision d615a7e6209540556165f4d71d84fabb5e3331a7)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (C) 2023, STMicroelectronics - All Rights Reserved
4  */
5 
6 #ifndef PTA_STM32MP_RPROC_PUB_KEY_H
7 #define PTA_STM32MP_RPROC_PUB_KEY_H
8 
9 #include <types_ext.h>
10 
11 extern const uint32_t rproc_pub_key_exponent;
12 extern const uint8_t rproc_pub_key_modulus[];
13 extern const size_t rproc_pub_key_modulus_size;
14 
15 #endif /* PTA_STM32MP_RPROC_PUB_KEY_H */
16 
17