xref: /optee_os/core/pta/stm32mp/rproc_pub_key.h (revision 9f34db38245c9b3a4e6e7e63eb78a75e23ab2da3)
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