-
Notifications
You must be signed in to change notification settings - Fork 513
/
handshake.cpp
204 lines (167 loc) · 5.59 KB
/
handshake.cpp
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/**
******************************************************************************
* @file handshake.cpp
* @authors Zachary Crockett
* @version V1.0.0
* @date 15-Nov-2013
* @brief HANDSHAKE
******************************************************************************
Copyright (c) 2013-2015 Particle Industries, Inc. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation, either
version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this program; if not, see <http://www.gnu.org/licenses/>.
******************************************************************************
*/
#include "handshake.h"
#include "protocol_selector.h"
#if HAL_PLATFORM_CLOUD_TCP
#include "mbedtls/sha1.h"
#include "mbedtls_compat.h"
#include "mbedtls_util.h"
int ciphertext_from_nonce_and_id(const unsigned char *nonce,
const unsigned char *id,
const unsigned char *pubkey,
unsigned char *ciphertext)
{
unsigned char plaintext[52];
memcpy(plaintext, nonce, 40);
memcpy(plaintext + 40, id, 12);
rsa_context rsa;
init_rsa_context_with_public_key(&rsa, pubkey);
int ret = mbedtls_rsa_pkcs1_encrypt(&rsa, mbedtls_default_rng, nullptr, MBEDTLS_RSA_PUBLIC, 52, plaintext, ciphertext);
rsa_free(&rsa);
return ret;
}
int decipher_aes_credentials(const unsigned char *private_key,
const unsigned char *ciphertext,
unsigned char *aes_credentials)
{
rsa_context rsa;
init_rsa_context_with_private_key(&rsa, private_key);
size_t len = 128;
int ret = mbedtls_rsa_pkcs1_decrypt(&rsa, mbedtls_default_rng, nullptr, MBEDTLS_RSA_PRIVATE, &len, ciphertext,
aes_credentials, 40);
rsa_free(&rsa);
return ret;
}
void calculate_ciphertext_hmac(const unsigned char *ciphertext,
const unsigned char *hmac_key,
unsigned char *hmac)
{
mbedtls_md_hmac(mbedtls_md_info_from_type(MBEDTLS_MD_SHA1), hmac_key, 40, ciphertext, 128, hmac);
}
int verify_signature(const unsigned char *signature,
const unsigned char *pubkey,
const unsigned char *expected_hmac)
{
rsa_context rsa;
init_rsa_context_with_public_key(&rsa, pubkey);
int ret = mbedtls_rsa_pkcs1_verify(&rsa, mbedtls_default_rng, nullptr, MBEDTLS_RSA_PUBLIC, MBEDTLS_MD_NONE, 20,
expected_hmac, signature);
rsa_free(&rsa);
return ret;
}
void init_rsa_context_with_public_key(rsa_context *rsa,
const unsigned char *pubkey)
{
mbedtls_rsa_init(rsa, MBEDTLS_RSA_PKCS_V15, 0);
rsa->len = 256;
mpi_read_binary(&rsa->N, pubkey + 33, 256);
mpi_read_string(&rsa->E, 16, "10001");
}
/* Very simple ASN.1 parsing.
* Mainly needed because, even though all the RSA big integers
* are always a specific number of bytes, the key generation
* and encoding process sometimes pads each number with a
* leading zero byte.
*/
void init_rsa_context_with_private_key(rsa_context *rsa,
const unsigned char *private_key)
{
mbedtls_rsa_init(rsa, MBEDTLS_RSA_PKCS_V15, 0);
rsa->len = 128;
int i = 9;
if (private_key[i] & 1)
{
// key contains an extra zero byte
++i;
}
++i;
mpi_read_binary(&rsa->N, private_key + i, 128);
mpi_read_string(&rsa->E, 16, "10001");
i = i + 135;
if (private_key[i] & 1)
{
// key contains an extra zero byte
++i;
}
++i;
mpi_read_binary(&rsa->D, private_key + i, 128);
i = i + 129;
if (private_key[i] & 1)
{
// key contains an extra zero byte
++i;
}
++i;
mpi_read_binary(&rsa->P, private_key + i, 64);
i = i + 65;
if (private_key[i] & 1)
{
// key contains an extra zero byte
++i;
}
++i;
mpi_read_binary(&rsa->Q, private_key + i, 64);
i = i + 65;
if (private_key[i] & 1)
{
// key contains an extra zero byte
++i;
}
++i;
mpi_read_binary(&rsa->DP, private_key + i, 64);
i = i + 65;
if (private_key[i] & 1)
{
// key contains an extra zero byte
++i;
}
++i;
mpi_read_binary(&rsa->DQ, private_key + i, 64);
i = i + 65;
if (private_key[i] & 1)
{
// key contains an extra zero byte
++i;
}
++i;
mpi_read_binary(&rsa->QP, private_key + i, 64);
}
/* Sample Usage:
* uint8_t device_public_key[162];
* uint8_t device_private_key[612];
* HAL_FLASH_Read_CorePrivateKey(device_private_key);
* parse_device_pubkey_from_privkey(device_public_key, device_private_key);
*/
void extract_public_rsa_key(uint8_t* device_pubkey, const uint8_t* device_privkey)
{
uint8_t device_pubkey_header[29] = {
0x30, 0x81, 0x9f, 0x30, 0x0d, 0x06, 0x09, 0x2a,
0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01,
0x05, 0x00, 0x03, 0x81, 0x8d, 0x00, 0x30, 0x81,
0x89, 0x02, 0x81, 0x81, 0x00
};
uint8_t device_pubkey_exponent[5] = {0x02, 0x03, 0x01, 0x00, 0x01};
memcpy(device_pubkey, device_pubkey_header, 29);
memcpy(device_pubkey + 29, device_privkey + 11, 128);
memcpy(device_pubkey + 157, device_pubkey_exponent, 5);
}
#endif