1 /*
2  * Copyright (c) 2023 Lucas Dietrich <ld.adecy@gmail.com>
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _AWS_CERTS_H_
8 #define _AWS_CERTS_H_
9 
10 #include <stdint.h>
11 
12 extern const uint8_t ca_cert[];
13 extern const uint32_t ca_cert_len;
14 
15 extern const uint8_t private_key[];
16 extern const uint32_t private_key_len;
17 
18 extern const uint8_t public_cert[];
19 extern const uint32_t public_cert_len;
20 
21 #endif /* _AWS_CERTS_H_ */
22