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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
|
#include "curve.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "protobuf-c/protobuf-c.h"
#include "curve25519/curve25519-donna.h"
#include "curve25519/ed25519/additions/curve_sigs.h"
#include "curve25519/ed25519/additions/vxeddsa.h"
#include "signal_protocol_internal.h"
#include "signal_utarray.h"
#define DJB_TYPE 0x05
#define DJB_KEY_LEN 32
#define VRF_VERIFY_LEN 32
struct ec_public_key
{
signal_type_base base;
uint8_t data[DJB_KEY_LEN];
};
struct ec_private_key
{
signal_type_base base;
uint8_t data[DJB_KEY_LEN];
};
struct ec_key_pair
{
signal_type_base base;
ec_public_key *public_key;
ec_private_key *private_key;
};
struct ec_public_key_list
{
UT_array *values;
};
int curve_decode_point(ec_public_key **public_key, const uint8_t *key_data, size_t key_len, signal_context *global_context)
{
ec_public_key *key = 0;
if(key_len > 0 && key_data[0] != DJB_TYPE) {
signal_log(global_context, SG_LOG_ERROR, "Invalid key type: %d", key_data[0]);
return SG_ERR_INVALID_KEY;
}
if(key_len != DJB_KEY_LEN + 1) {
signal_log(global_context, SG_LOG_ERROR, "Invalid key length: %d", key_len);
return SG_ERR_INVALID_KEY;
}
key = malloc(sizeof(ec_public_key));
if(!key) {
return SG_ERR_NOMEM;
}
SIGNAL_INIT(key, ec_public_key_destroy);
memcpy(key->data, key_data + 1, DJB_KEY_LEN);
*public_key = key;
return 0;
}
int ec_public_key_compare(const ec_public_key *key1, const ec_public_key *key2)
{
if(key1 == key2) {
return 0;
}
else if(key1 == 0 && key2 != 0) {
return -1;
}
else if(key1 != 0 && key2 == 0) {
return 1;
}
else {
return signal_constant_memcmp(key1->data, key2->data, DJB_KEY_LEN);
}
}
int ec_public_key_memcmp(const ec_public_key *key1, const ec_public_key *key2)
{
if(key1 == key2) {
return 0;
}
else if(key1 == 0 && key2 != 0) {
return -1;
}
else if(key1 != 0 && key2 == 0) {
return 1;
}
else {
return memcmp(key1->data, key2->data, DJB_KEY_LEN);
}
}
int ec_public_key_serialize(signal_buffer **buffer, const ec_public_key *key)
{
signal_buffer *buf = 0;
uint8_t *data = 0;
if(!key) {
return SG_ERR_INVAL;
}
buf = signal_buffer_alloc(sizeof(uint8_t) * (DJB_KEY_LEN + 1));
if(!buf) {
return SG_ERR_NOMEM;
}
data = signal_buffer_data(buf);
data[0] = DJB_TYPE;
memcpy(data + 1, key->data, DJB_KEY_LEN);
*buffer = buf;
return 0;
}
int ec_public_key_serialize_protobuf(ProtobufCBinaryData *buffer, const ec_public_key *key)
{
size_t len = 0;
uint8_t *data = 0;
assert(buffer);
assert(key);
len = sizeof(uint8_t) * (DJB_KEY_LEN + 1);
data = malloc(len);
if(!data) {
return SG_ERR_NOMEM;
}
data[0] = DJB_TYPE;
memcpy(data + 1, key->data, DJB_KEY_LEN);
buffer->data = data;
buffer->len = len;
return 0;
}
void ec_public_key_destroy(signal_type_base *type)
{
ec_public_key *public_key = (ec_public_key *)type;
free(public_key);
}
int curve_decode_private_point(ec_private_key **private_key, const uint8_t *key_data, size_t key_len, signal_context *global_context)
{
ec_private_key *key = 0;
if(key_len != DJB_KEY_LEN) {
signal_log(global_context, SG_LOG_ERROR, "Invalid key length: %d", key_len);
return SG_ERR_INVALID_KEY;
}
key = malloc(sizeof(ec_private_key));
if(!key) {
return SG_ERR_NOMEM;
}
SIGNAL_INIT(key, ec_private_key_destroy);
memcpy(key->data, key_data, DJB_KEY_LEN);
*private_key = key;
return 0;
}
int ec_private_key_compare(const ec_private_key *key1, const ec_private_key *key2)
{
if(key1 == key2) {
return 0;
}
else if(key1 == 0 && key2 != 0) {
return -1;
}
else if(key1 != 0 && key2 == 0) {
return 1;
}
else {
return signal_constant_memcmp(key1->data, key2->data, DJB_KEY_LEN);
}
}
int ec_private_key_serialize(signal_buffer **buffer, const ec_private_key *key)
{
signal_buffer *buf = 0;
uint8_t *data = 0 ;
buf = signal_buffer_alloc(sizeof(uint8_t) * DJB_KEY_LEN);
if(!buf) {
return SG_ERR_NOMEM;
}
data = signal_buffer_data(buf);
memcpy(data, key->data, DJB_KEY_LEN);
*buffer = buf;
return 0;
}
int ec_private_key_serialize_protobuf(ProtobufCBinaryData *buffer, const ec_private_key *key)
{
size_t len = 0;
uint8_t *data = 0;
assert(buffer);
assert(key);
len = sizeof(uint8_t) * DJB_KEY_LEN;
data = malloc(len);
if(!data) {
return SG_ERR_NOMEM;
}
memcpy(data, key->data, DJB_KEY_LEN);
buffer->data = data;
buffer->len = len;
return 0;
}
void ec_private_key_destroy(signal_type_base *type)
{
ec_private_key *private_key = (ec_private_key *)type;
signal_explicit_bzero(private_key, sizeof(ec_private_key));
free(private_key);
}
int ec_key_pair_create(ec_key_pair **key_pair, ec_public_key *public_key, ec_private_key *private_key)
{
ec_key_pair *result = malloc(sizeof(ec_key_pair));
if(!result) {
return SG_ERR_NOMEM;
}
SIGNAL_INIT(result, ec_key_pair_destroy);
result->public_key = public_key;
SIGNAL_REF(public_key);
result->private_key = private_key;
SIGNAL_REF(private_key);
*key_pair = result;
return 0;
}
ec_public_key *ec_key_pair_get_public(const ec_key_pair *key_pair)
{
return key_pair->public_key;
}
ec_private_key *ec_key_pair_get_private(const ec_key_pair *key_pair)
{
return key_pair->private_key;
}
void ec_key_pair_destroy(signal_type_base *type)
{
ec_key_pair *key_pair = (ec_key_pair *)type;
SIGNAL_UNREF(key_pair->public_key);
SIGNAL_UNREF(key_pair->private_key);
free(key_pair);
}
int curve_generate_private_key(signal_context *context, ec_private_key **private_key)
{
int result = 0;
ec_private_key *key = 0;
assert(context);
key = malloc(sizeof(ec_private_key));
if(!key) {
result = SG_ERR_NOMEM;
goto complete;
}
SIGNAL_INIT(key, ec_private_key_destroy);
result = signal_crypto_random(context, key->data, DJB_KEY_LEN);
if(result < 0) {
goto complete;
}
key->data[0] &= 248;
key->data[31] &= 127;
key->data[31] |= 64;
complete:
if(result < 0) {
if(key) {
SIGNAL_UNREF(key);
}
}
else {
*private_key = key;
}
return result;
}
int curve_generate_public_key(ec_public_key **public_key, const ec_private_key *private_key)
{
static const uint8_t basepoint[32] = {9};
int result = 0;
ec_public_key *key = malloc(sizeof(ec_public_key));
if(!key) {
return SG_ERR_NOMEM;
}
SIGNAL_INIT(key, ec_public_key_destroy);
result = curve25519_donna(key->data, private_key->data, basepoint);
if(result == 0) {
*public_key = key;
return 0;
}
else {
if(key) {
SIGNAL_UNREF(key);
}
return SG_ERR_UNKNOWN;
}
}
int curve_generate_key_pair(signal_context *context, ec_key_pair **key_pair)
{
int result = 0;
ec_key_pair *pair_result = 0;
ec_private_key *key_private = 0;
ec_public_key *key_public = 0;
assert(context);
result = curve_generate_private_key(context, &key_private);
if(result < 0) {
goto complete;
}
result = curve_generate_public_key(&key_public, key_private);
if(result < 0) {
goto complete;
}
result = ec_key_pair_create(&pair_result, key_public, key_private);
if(result < 0) {
goto complete;
}
complete:
if(key_public) {
SIGNAL_UNREF(key_public);
}
if(key_private) {
SIGNAL_UNREF(key_private);
}
if(result < 0) {
if(pair_result) {
SIGNAL_UNREF(pair_result);
}
}
else {
*key_pair = pair_result;
}
return result;
}
ec_public_key_list *ec_public_key_list_alloc()
{
int result = 0;
ec_public_key_list *list = malloc(sizeof(ec_public_key_list));
if(!list) {
result = SG_ERR_NOMEM;
goto complete;
}
memset(list, 0, sizeof(ec_public_key_list));
utarray_new(list->values, &ut_ptr_icd);
complete:
if(result < 0) {
if(list) {
free(list);
}
return 0;
}
else {
return list;
}
}
ec_public_key_list *ec_public_key_list_copy(const ec_public_key_list *list)
{
int result = 0;
ec_public_key_list *result_list = 0;
unsigned int size;
unsigned int i;
ec_public_key **p;
result_list = ec_public_key_list_alloc();
if(!result_list) {
result = SG_ERR_NOMEM;
goto complete;
}
size = utarray_len(list->values);
utarray_reserve(result_list->values, size);
for (i = 0; i < size; i++) {
p = (ec_public_key **)utarray_eltptr(list->values, i);
result = ec_public_key_list_push_back(result_list, *p);
if(result < 0) {
goto complete;
}
}
complete:
if(result < 0) {
if(result_list) {
ec_public_key_list_free(result_list);
}
return 0;
}
else {
return result_list;
}
}
int ec_public_key_list_push_back(ec_public_key_list *list, ec_public_key *value)
{
int result = 0;
assert(list);
assert(value);
utarray_push_back(list->values, &value);
SIGNAL_REF(value);
complete:
return result;
}
unsigned int ec_public_key_list_size(const ec_public_key_list *list)
{
assert(list);
return utarray_len(list->values);
}
ec_public_key *ec_public_key_list_at(const ec_public_key_list *list, unsigned int index)
{
ec_public_key **value = 0;
assert(list);
assert(index < utarray_len(list->values));
value = (ec_public_key **)utarray_eltptr(list->values, index);
assert(*value);
return *value;
}
int ec_public_key_list_sort_comparator(const void *a, const void *b)
{
const ec_public_key *key1 = *((const ec_public_key **)a);
const ec_public_key *key2 = *((const ec_public_key **)b);
return ec_public_key_memcmp(key1, key2);
}
void ec_public_key_list_sort(ec_public_key_list *list)
{
assert(list);
utarray_sort(list->values, ec_public_key_list_sort_comparator);
}
void ec_public_key_list_free(ec_public_key_list *list)
{
unsigned int size;
unsigned int i;
ec_public_key **p;
if(list) {
size = utarray_len(list->values);
for (i = 0; i < size; i++) {
p = (ec_public_key **)utarray_eltptr(list->values, i);
SIGNAL_UNREF(*p);
}
utarray_free(list->values);
free(list);
}
}
int curve_calculate_agreement(uint8_t **shared_key_data, const ec_public_key *public_key, const ec_private_key *private_key)
{
uint8_t *key = 0;
int result = 0;
if(!public_key || !private_key) {
return SG_ERR_INVALID_KEY;
}
key = malloc(DJB_KEY_LEN);
if(!key) {
return SG_ERR_NOMEM;
}
result = curve25519_donna(key, private_key->data, public_key->data);
if(result == 0) {
*shared_key_data = key;
return DJB_KEY_LEN;
}
else {
if(key) {
free(key);
}
return SG_ERR_UNKNOWN;
}
}
int curve_verify_signature(const ec_public_key *signing_key,
const uint8_t *message_data, size_t message_len,
const uint8_t *signature_data, size_t signature_len)
{
if(signature_len != 64) {
return SG_ERR_INVAL;
}
return curve25519_verify(signature_data, signing_key->data, message_data, message_len) == 0;
}
int curve_calculate_signature(signal_context *context,
signal_buffer **signature,
const ec_private_key *signing_key,
const uint8_t *message_data, size_t message_len)
{
int result = 0;
uint8_t random_data[CURVE_SIGNATURE_LEN];
signal_buffer *buffer = 0;
result = signal_crypto_random(context, random_data, sizeof(random_data));
if(result < 0) {
goto complete;
}
buffer = signal_buffer_alloc(CURVE_SIGNATURE_LEN);
if(!buffer) {
result = SG_ERR_NOMEM;
goto complete;
}
result = curve25519_sign(signal_buffer_data(buffer), signing_key->data, message_data, message_len, random_data);
complete:
if(result < 0) {
if(buffer) {
signal_buffer_free(buffer);
}
}
else {
*signature = buffer;
}
return result;
}
int curve_verify_vrf_signature(signal_context *context,
signal_buffer **vrf_output,
const ec_public_key *signing_key,
const uint8_t *message_data, size_t message_len,
const uint8_t *signature_data, size_t signature_len)
{
int result = 0;
signal_buffer *buffer = 0;
if(!signing_key) {
return SG_ERR_INVAL;
}
if(!message_data || !signature_data || signature_len != 96) {
signal_log(context, SG_LOG_ERROR, "Invalid message or signature format");
return SG_ERR_VRF_SIG_VERIF_FAILED;
}
buffer = signal_buffer_alloc(VRF_VERIFY_LEN);
if(!buffer) {
result = SG_ERR_NOMEM;
goto complete;
}
result = vxed25519_verify(signal_buffer_data(buffer),
signature_data, signing_key->data,
message_data, message_len);
if(result != 0) {
signal_log(context, SG_LOG_ERROR, "Invalid signature");
result = SG_ERR_VRF_SIG_VERIF_FAILED;
}
complete:
if(result < 0) {
signal_buffer_free(buffer);
}
else {
*vrf_output = buffer;
}
return result;
}
int curve_calculate_vrf_signature(signal_context *context,
signal_buffer **signature,
const ec_private_key *signing_key,
const uint8_t *message_data, size_t message_len)
{
int result = 0;
uint8_t random_data[64];
signal_buffer *buffer = 0;
result = signal_crypto_random(context, random_data, sizeof(random_data));
if(result < 0) {
goto complete;
}
buffer = signal_buffer_alloc(VRF_SIGNATURE_LEN);
if(!buffer) {
result = SG_ERR_NOMEM;
goto complete;
}
result = vxed25519_sign(signal_buffer_data(buffer),
signing_key->data,
message_data, message_len, random_data);
if(result != 0) {
signal_log(context, SG_LOG_ERROR, "Signature failed!");
result = SG_ERR_UNKNOWN;
}
complete:
if(result < 0) {
signal_buffer_free(buffer);
}
else {
*signature = buffer;
}
return result;
}
|