-
Notifications
You must be signed in to change notification settings - Fork 21
/
aws_credentials.h
61 lines (54 loc) · 1.26 KB
/
aws_credentials.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* AWS Certificates
* Copyright (c) 2020 Arm Limited
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef AWS_CREDENTIALS_H
#define AWS_CREDENTIALS_H
namespace aws {
namespace credentials {
/*
* PEM-encoded root CA certificate
*
* Must include the PEM header and footer,
* and every line of the body needs to be quoted and end with \n:
* "-----BEGIN CERTIFICATE-----\n"
* "...base64 data...\n"
* "-----END CERTIFICATE-----";
*/
const char rootCA[] = "-----BEGIN CERTIFICATE-----\n"
"...\n"
"...\n"
"...\n"
"-----END CERTIFICATE-----";
/*
* PEM-encoded client certificate
*
* Must include the PEM header and footer,
* and every line of the body needs to be quoted and end with \n:
* "-----BEGIN CERTIFICATE-----\n"
* "...base64 data...\n"
* "-----END CERTIFICATE-----";
*/
const char clientCrt[] = "-----BEGIN CERTIFICATE-----\n"
"...\n"
"...\n"
"...\n"
"-----END CERTIFICATE-----";
/*
* PEM-encoded client private key.
*
* Must include the PEM header and footer,
* and every line of the body needs to be quoted and end with \n:
* "-----BEGIN RSA PRIVATE KEY-----\n"
* "...base64 data...\n"
* "-----END RSA PRIVATE KEY-----";
*/
const char clientKey[] = "-----BEGIN RSA PRIVATE KEY-----\n"
"...\n"
"...\n"
"...\n"
"-----END RSA PRIVATE KEY-----";
}
}
#endif