Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
#define NX_CRYPTO_SOURCE_CODE
#include "nx_crypto_ecdh.h"
...
...
_nx_crypto_ecdh_key_pair_import(NX_CRYPTO_ECDH *, NX_CRYPTO_EC *, UCHAR *, ULONG, UCHAR *, ULONG)
...
...
_nx_crypto_ecdh_private_key_export(NX_CRYPTO_ECDH *, UCHAR *, ULONG, ULONG *)
...
...
_nx_crypto_ecdh_setup(NX_CRYPTO_ECDH *, UCHAR *, ULONG, ULONG *, NX_CRYPTO_EC *, ULONG *)
...
...
_nx_crypto_ecdh_compute_secret(NX_CRYPTO_ECDH *, UCHAR *, ULONG, ULONG *, UCHAR *, ULONG, ULONG *)
...
...
_nx_crypto_method_ecdh_init(struct NX_CRYPTO_METHOD_STRUCT *, UCHAR *, NX_CRYPTO_KEY_SIZE, void **, void *, ULONG)
...
...
_nx_crypto_method_ecdh_cleanup(void *)
...
_nx_crypto_method_ecdh_operation(UINT, void *, struct NX_CRYPTO_METHOD_STRUCT *, UCHAR *, NX_CRYPTO_KEY_SIZE, UCHAR *, ULONG, UCHAR *, UCHAR *, ULONG, void *, ULONG, void *, void (*)(void *, UINT))
Files
loading...
CodeScopeSTM32 Libraries and Samplesnetxduocrypto_libraries/src/nx_crypto_ecdh.c
 
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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** NetX Crypto Component */ /** */ /** Elliptic-curve Diffie-Hellman (ECDH) */ /** */... /**************************************************************************/ /**************************************************************************/ #define NX_CRYPTO_SOURCE_CODE /* Include necessary system files. */ #include "nx_crypto_ecdh.h" ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_crypto_ecdh_key_pair_import PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Timothy Stapko, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function sets up a Elliptic-curve Diffie-Hellman context by */ /* importing a local key pair. */ /* */ /* INPUT */ /* */ /* ecdh_ptr ECDH context */ /* curve Elliptic Curve */ /* local_private_key_ptr Pointer to local private key */ /* local_private_key_len Local private key length */ /* local_public_key_ptr Pointer to local public key */ /* local_public_key_len Remote public key length */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* None */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Timothy Stapko Initial Version 6.0 */ /* 09-30-2020 Timothy Stapko Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ NX_CRYPTO_KEEP UINT _nx_crypto_ecdh_key_pair_import(NX_CRYPTO_ECDH *ecdh_ptr, NX_CRYPTO_EC *curve, UCHAR *local_private_key_ptr, ULONG local_private_key_len, UCHAR *local_public_key_ptr, ULONG local_public_key_len) { UINT public_key_len; NX_CRYPTO_HUGE_NUMBER private_key; NX_CRYPTO_PARAMETER_NOT_USED(local_public_key_ptr); if (local_private_key_len > sizeof(ecdh_ptr -> nx_crypto_ecdh_private_key_buffer)) { return(NX_CRYPTO_SIZE_ERROR); }if (local_private_key_len > sizeof(ecdh_ptr -> nx_crypto_ecdh_private_key_buffer)) { ... } public_key_len = 1 + (((curve -> nx_crypto_ec_bits + 7) >> 3) << 1); if (local_public_key_len > public_key_len) { return(NX_CRYPTO_SIZE_ERROR); }if (local_public_key_len > public_key_len) { ... } /* Assign the desired key size based on the chosen elliptic curve. */ ecdh_ptr -> nx_crypto_ecdh_key_size = curve -> nx_crypto_ec_n.nx_crypto_huge_buffer_size; /* Clear the private key buffer. */ NX_CRYPTO_MEMSET(ecdh_ptr -> nx_crypto_ecdh_private_key_buffer, 0, sizeof(ecdh_ptr -> nx_crypto_ecdh_private_key_buffer)); /* Setup the private key. */ private_key.nx_crypto_huge_number_data = ecdh_ptr -> nx_crypto_ecdh_private_key_buffer; private_key.nx_crypto_huge_buffer_size = sizeof(ecdh_ptr -> nx_crypto_ecdh_private_key_buffer); _nx_crypto_huge_number_setup(&private_key, local_private_key_ptr, local_private_key_len); return(NX_CRYPTO_SUCCESS); }{ ... } .../**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_crypto_ecdh_private_key_export PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Timothy Stapko, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function exports the local private key in Elliptic-curve */ /* Diffie-Hellman context. */ /* */ /* INPUT */ /* */ /* ecdh_ptr ECDH context */ /* local_private_key_ptr Pointer to local private key */ /* local_private_key_len Local private key length */ /* actual_local_private_key_len Pointer to private key length */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* None */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Timothy Stapko Initial Version 6.0 */ /* 09-30-2020 Timothy Stapko Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ UINT _nx_crypto_ecdh_private_key_export(NX_CRYPTO_ECDH *ecdh_ptr, UCHAR *local_private_key_ptr, ULONG local_private_key_len, ULONG *actual_local_private_key_len) { UINT status; UINT key_size; UINT clen; NX_CRYPTO_EC *curve; NX_CRYPTO_HUGE_NUMBER private_key; /* Make sure the key size was assigned before we do anything else. Generally, this means _nx_crypto_ecdh_setup was not called to set up the NX_CRYPTO_ECDH structure prior to this call. *//* ... */ if (0 == ecdh_ptr -> nx_crypto_ecdh_key_size) { return(NX_CRYPTO_SIZE_ERROR); }if (0 == ecdh_ptr -> nx_crypto_ecdh_key_size) { ... } curve = ecdh_ptr -> nx_crypto_ecdh_curve; /* Figure out the sizes of our keys and buffers. */ key_size = ecdh_ptr -> nx_crypto_ecdh_key_size; /* Check to make sure the buffer is large enough to hold the private key. */ clen = (curve -> nx_crypto_ec_bits + 7) >> 3; if (local_private_key_len < clen) { return(NX_CRYPTO_SIZE_ERROR); }if (local_private_key_len < clen) { ... } /* Private key buffer - note that no scratch is required for the private key, but we set it in case it is needed in the future. *//* ... */ private_key.nx_crypto_huge_number_data = (HN_UBASE *)ecdh_ptr -> nx_crypto_ecdh_private_key_buffer; private_key.nx_crypto_huge_number_size = key_size >> HN_SIZE_SHIFT; private_key.nx_crypto_huge_buffer_size = key_size; private_key.nx_crypto_huge_number_is_negative = NX_CRYPTO_FALSE; /* Copy the private key into the return buffer. */ status = _nx_crypto_huge_number_extract_fixed_size(&private_key, local_private_key_ptr, clen); *actual_local_private_key_len = clen; return(status); }{ ... } .../**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_crypto_ecdh_setup PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Timothy Stapko, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function sets up a Elliptic-curve Diffie-Hellman context by */ /* generating a local key pair. */ /* */ /* INPUT */ /* */ /* ecdh_ptr ECDH context */ /* share_secret_key_ptr Shared secret buffer pointer */ /* share_secret_key_len_ptr Length of shared secret */ /* local_public_key_ptr Pointer to local public key */ /* local_public_key_len Remote public key length */ /* scratch_buf_ptr Pointer to scratch buffer, */ /* which cannot be smaller */ /* than 6 times of the key */ /* size (in bytes). This */ /* scratch buffer can be */ /* reused after this function */ /* returns. */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* _nx_crypto_ec_key_pair_generation_extra */ /* Generate EC Key Pair */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Timothy Stapko Initial Version 6.0 */ /* 09-30-2020 Timothy Stapko Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ NX_CRYPTO_KEEP UINT _nx_crypto_ecdh_setup(NX_CRYPTO_ECDH *ecdh_ptr, UCHAR *local_public_key_ptr, ULONG local_public_key_len, ULONG *actual_local_public_key_len, NX_CRYPTO_EC *curve, HN_UBASE *scratch_buf_ptr) { UINT public_key_len; /* Actual huge numbers used in calculations */ NX_CRYPTO_HUGE_NUMBER private_key; NX_CRYPTO_EC_POINT public_key; public_key_len = 1 + (((curve -> nx_crypto_ec_bits + 7) >> 3) << 1); if (local_public_key_len < public_key_len) { return(NX_CRYPTO_SIZE_ERROR); }if (local_public_key_len < public_key_len) { ... } ecdh_ptr -> nx_crypto_ecdh_curve = curve; /* Assign the desired key size based on the chosen elliptic curve. */ ecdh_ptr -> nx_crypto_ecdh_key_size = curve -> nx_crypto_ec_n.nx_crypto_huge_buffer_size; /* Public key buffer (and scratch). */ NX_CRYPTO_EC_POINT_INITIALIZE(&public_key, NX_CRYPTO_EC_POINT_AFFINE, scratch_buf_ptr, ecdh_ptr -> nx_crypto_ecdh_key_size); /* Private key buffer - note that no scratch is required for the private key. */ private_key.nx_crypto_huge_number_data = ecdh_ptr -> nx_crypto_ecdh_private_key_buffer; private_key.nx_crypto_huge_number_size = ecdh_ptr -> nx_crypto_ecdh_key_size >> HN_SIZE_SHIFT; private_key.nx_crypto_huge_buffer_size = sizeof(ecdh_ptr -> nx_crypto_ecdh_private_key_buffer); private_key.nx_crypto_huge_number_is_negative = NX_CRYPTO_FALSE; /* Clear the private key buffer. */ NX_CRYPTO_MEMSET(ecdh_ptr -> nx_crypto_ecdh_private_key_buffer, 0, sizeof(ecdh_ptr -> nx_crypto_ecdh_private_key_buffer)); /* Generate Key Pair. */ _nx_crypto_ec_key_pair_generation_extra(curve, &curve -> nx_crypto_ec_g, &private_key, &public_key, scratch_buf_ptr); /* Copy the public key into the return buffer. */ _nx_crypto_ec_point_extract_uncompressed(curve, &public_key, local_public_key_ptr, local_public_key_len, &public_key_len); if (public_key_len == 0) { return(NX_CRYPTO_SIZE_ERROR); }if (public_key_len == 0) { ... } *actual_local_public_key_len = public_key_len; return(NX_CRYPTO_SUCCESS); }{ ... } ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_crypto_ecdh_compute_secret PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Timothy Stapko, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function computes the Elliptic-curve Diffie-Hellman shared */ /* secret using an existing Elliptic-curve Diffie-Hellman context */ /* and a public key received from a remote entity. */ /* */ /* INPUT */ /* */ /* ecdh_ptr ECDH context */ /* share_secret_key_ptr Shared secret buffer pointer */ /* share_secret_key_len_ptr Length of shared secret */ /* remote_public_key Pointer to remote public key */ /* remote_public_key_len Remote public key length */ /* scratch_buf_ptr Pointer to scratch buffer, */ /* which cannot be smaller */ /* than 8 times of the key */ /* size (in bytes). This */ /* scratch buffer can be */ /* reused after this function */ /* returns. */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* _nx_crypto_huge_number_extract Extract huge number */ /* _nx_crypto_huge_number_setup Setup huge number */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Timothy Stapko Initial Version 6.0 */ /* 09-30-2020 Timothy Stapko Modified comment(s), and */ /* added public key validation,*/ /* resulting in version 6.1 */ /* */... /**************************************************************************/ NX_CRYPTO_KEEP UINT _nx_crypto_ecdh_compute_secret(NX_CRYPTO_ECDH *ecdh_ptr, UCHAR *share_secret_key_ptr, ULONG share_secret_key_len_ptr, ULONG *actual_share_secret_key_len, UCHAR *remote_public_key, ULONG remote_public_key_len, HN_UBASE *scratch_buf_ptr) { UINT status; UINT key_size; UINT clen; NX_CRYPTO_EC *curve; /* Actual huge numbers used in calculations */ NX_CRYPTO_HUGE_NUMBER private_key; NX_CRYPTO_EC_POINT public_key, shared_secret; /* Make sure the key size was assigned before we do anything else. Generally, this means _nx_crypto_ecdh_setup was not called to set up the NX_CRYPTO_ECDH structure prior to this call. *//* ... */ if (0 == ecdh_ptr -> nx_crypto_ecdh_key_size) { return(NX_CRYPTO_SIZE_ERROR); }if (0 == ecdh_ptr -> nx_crypto_ecdh_key_size) { ... } curve = ecdh_ptr -> nx_crypto_ecdh_curve; /* Figure out the sizes of our keys and buffers. We need 4X the key size for our buffer space. */ key_size = ecdh_ptr -> nx_crypto_ecdh_key_size; /* Make sure the remote public key is small enough to fit into the huge number buffer. */ if (remote_public_key_len > 1 + 2 * key_size) { return(NX_CRYPTO_SIZE_ERROR); }if (remote_public_key_len > 1 + 2 * key_size) { ... } /* Check to make sure the buffer is large enough to hold the shared secret key. */ clen = (curve -> nx_crypto_ec_bits + 7) >> 3; if (share_secret_key_len_ptr < clen) { return(NX_CRYPTO_SIZE_ERROR); }if (share_secret_key_len_ptr < clen) { ... } NX_CRYPTO_EC_POINT_INITIALIZE(&public_key, NX_CRYPTO_EC_POINT_AFFINE, scratch_buf_ptr, key_size); NX_CRYPTO_EC_POINT_INITIALIZE(&shared_secret, NX_CRYPTO_EC_POINT_AFFINE, scratch_buf_ptr, key_size); /* Copy the remote public key from the caller's buffer. */ status = _nx_crypto_ec_point_setup(&public_key, remote_public_key, remote_public_key_len); if (status != NX_CRYPTO_SUCCESS) { return(status); }if (status != NX_CRYPTO_SUCCESS) { ... } #ifndef NX_CRYPTO_ECC_DISABLE_KEY_VALIDATION status = _nx_crypto_ec_validate_public_key(&public_key, curve, NX_CRYPTO_TRUE, scratch_buf_ptr); if (status != NX_CRYPTO_SUCCESS) { return(status); }if (status != NX_CRYPTO_SUCCESS) { ... } /* ... */#endif /* NX_CRYPTO_ECC_DISABLE_KEY_VALIDATION */ /* Private key buffer - note that no scratch is required for the private key, but we set it in case it is needed in the future. *//* ... */ private_key.nx_crypto_huge_number_data = (HN_UBASE *)ecdh_ptr -> nx_crypto_ecdh_private_key_buffer; private_key.nx_crypto_huge_number_size = key_size >> HN_SIZE_SHIFT; private_key.nx_crypto_huge_buffer_size = key_size; private_key.nx_crypto_huge_number_is_negative = NX_CRYPTO_FALSE; /* Finally, generate shared secret from the remote public key, our generated private key, and the curve. The actual calculation is "shared_secret = private_key * public_key". *//* ... */ curve -> nx_crypto_ec_multiple(curve, &public_key, &private_key, &shared_secret, scratch_buf_ptr); /* The public key size is simply the key size for this group. */ /* Copy the shared secret into the return buffer. */ status = _nx_crypto_huge_number_extract_fixed_size(&shared_secret.nx_crypto_ec_point_x, share_secret_key_ptr, clen); *actual_share_secret_key_len = clen; return(status); }{ ... } ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_crypto_method_ecdh_init PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Timothy Stapko, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function is the common crypto method init callback for */ /* Microsoft supported ECDH cryptographic algorithm. */ /* */ /* INPUT */ /* */ /* method Pointer to crypto method */ /* key Pointer to key */ /* key_size_in_bits Length of key size in bits */ /* handler Returned crypto handler */ /* crypto_metadata Metadata area */ /* crypto_metadata_size Size of the metadata area */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* None */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Timothy Stapko Initial Version 6.0 */ /* 09-30-2020 Timothy Stapko Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ NX_CRYPTO_KEEP UINT _nx_crypto_method_ecdh_init(struct NX_CRYPTO_METHOD_STRUCT *method, UCHAR *key, NX_CRYPTO_KEY_SIZE key_size_in_bits, VOID **handle, VOID *crypto_metadata, ULONG crypto_metadata_size) { NX_CRYPTO_STATE_CHECK NX_CRYPTO_PARAMETER_NOT_USED(key); NX_CRYPTO_PARAMETER_NOT_USED(key_size_in_bits); NX_CRYPTO_PARAMETER_NOT_USED(handle); if ((method == NX_CRYPTO_NULL) || (crypto_metadata == NX_CRYPTO_NULL)) { return(NX_CRYPTO_PTR_ERROR); }if ((method == NX_CRYPTO_NULL) || (crypto_metadata == NX_CRYPTO_NULL)) { ... } /* Verify the metadata addrsss is 4-byte aligned. */ if((((ULONG)crypto_metadata) & 0x3) != 0) { return(NX_CRYPTO_PTR_ERROR); }if ((((ULONG)crypto_metadata) & 0x3) != 0) { ... } if(crypto_metadata_size < sizeof(NX_CRYPTO_ECDH)) { return(NX_CRYPTO_PTR_ERROR); }if (crypto_metadata_size < sizeof(NX_CRYPTO_ECDH)) { ... } return(NX_CRYPTO_SUCCESS); }{ ... } ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_crypto_method_ecdh_cleanup PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Timothy Stapko, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function cleans up the crypto metadata. */ /* */ /* INPUT */ /* */ /* crypto_metadata Crypto metadata */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* NX_CRYPTO_MEMSET Set the memory */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Timothy Stapko Initial Version 6.0 */ /* 09-30-2020 Timothy Stapko Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ NX_CRYPTO_KEEP UINT _nx_crypto_method_ecdh_cleanup(VOID *crypto_metadata) { NX_CRYPTO_STATE_CHECK #ifdef NX_SECURE_KEY_CLEAR if (!crypto_metadata) return (NX_CRYPTO_SUCCESS); /* Clean up the crypto metadata. */ NX_CRYPTO_MEMSET(crypto_metadata, 0, sizeof(NX_CRYPTO_ECDH));/* ... */ #else NX_CRYPTO_PARAMETER_NOT_USED(crypto_metadata); #endif/* NX_SECURE_KEY_CLEAR */ return(NX_CRYPTO_SUCCESS); }{ ... } ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_crypto_method_ecdh_operation PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Timothy Stapko, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function performs an ECDH operation. */ /* */ /* INPUT */ /* */ /* op ECDH operation */ /* handle Crypto handle */ /* method Cryption Method Object */ /* key Encryption Key */ /* key_size_in_bits Key size in bits */ /* input Input data */ /* input_length_in_byte Input data size */ /* iv_ptr Initial vector */ /* output Output buffer */ /* output_length_in_byte Output buffer size */ /* crypto_metadata Metadata area */ /* crypto_metadata_size Metadata area size */ /* packet_ptr Pointer to packet */ /* nx_crypto_hw_process_callback Callback function pointer */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* _nx_crypto_ecdh_setup Setup local key pair */ /* _nx_crypto_ecdh_compute_secret Compute shared secret */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Timothy Stapko Initial Version 6.0 */ /* 09-30-2020 Timothy Stapko Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ NX_CRYPTO_KEEP UINT _nx_crypto_method_ecdh_operation(UINT op, VOID *handle, struct NX_CRYPTO_METHOD_STRUCT *method, UCHAR *key, NX_CRYPTO_KEY_SIZE key_size_in_bits, UCHAR *input, ULONG input_length_in_byte, UCHAR *iv_ptr, UCHAR *output, ULONG output_length_in_byte, VOID *crypto_metadata, ULONG crypto_metadata_size, VOID *packet_ptr, VOID (*nx_crypto_hw_process_callback)(VOID *, UINT)) { NX_CRYPTO_ECDH *ecdh; UINT status = NX_CRYPTO_SUCCESS; NX_CRYPTO_EXTENDED_OUTPUT *extended_output; NX_CRYPTO_PARAMETER_NOT_USED(handle); NX_CRYPTO_PARAMETER_NOT_USED(iv_ptr); NX_CRYPTO_PARAMETER_NOT_USED(output_length_in_byte); NX_CRYPTO_PARAMETER_NOT_USED(packet_ptr); NX_CRYPTO_PARAMETER_NOT_USED(nx_crypto_hw_process_callback); NX_CRYPTO_STATE_CHECK /* Verify the metadata addrsss is 4-byte aligned. */ if((method == NX_CRYPTO_NULL) || (crypto_metadata == NX_CRYPTO_NULL) || ((((ULONG)crypto_metadata) & 0x3) != 0)) { return(NX_CRYPTO_PTR_ERROR); }if ((method == NX_CRYPTO_NULL) || (crypto_metadata == NX_CRYPTO_NULL) || ((((ULONG)crypto_metadata) & 0x3) != 0)) { ... } if(crypto_metadata_size < sizeof(NX_CRYPTO_ECDH)) { return(NX_CRYPTO_PTR_ERROR); }if (crypto_metadata_size < sizeof(NX_CRYPTO_ECDH)) { ... } ecdh = (NX_CRYPTO_ECDH *)crypto_metadata; if (op == NX_CRYPTO_EC_CURVE_SET) { /* Set curve to be used in the ECDH. */ status = ((NX_CRYPTO_METHOD *)input) -> nx_crypto_operation(NX_CRYPTO_EC_CURVE_GET, NX_CRYPTO_NULL, (NX_CRYPTO_METHOD *)input, NX_CRYPTO_NULL, 0, NX_CRYPTO_NULL, 0, NX_CRYPTO_NULL, (UCHAR *)&ecdh -> nx_crypto_ecdh_curve, sizeof(NX_CRYPTO_EC *), NX_CRYPTO_NULL, 0, NX_CRYPTO_NULL, NX_CRYPTO_NULL); }if (op == NX_CRYPTO_EC_CURVE_SET) { ... } else if (op == NX_CRYPTO_EC_KEY_PAIR_GENERATE) { if (ecdh -> nx_crypto_ecdh_curve == NX_CRYPTO_NULL) { return(NX_CRYPTO_PTR_ERROR); }if (ecdh -> nx_crypto_ecdh_curve == NX_CRYPTO_NULL) { ... } extended_output = (NX_CRYPTO_EXTENDED_OUTPUT *)output; status = _nx_crypto_ec_key_pair_stream_generate(ecdh -> nx_crypto_ecdh_curve, extended_output -> nx_crypto_extended_output_data, extended_output -> nx_crypto_extended_output_length_in_byte, &extended_output -> nx_crypto_extended_output_actual_size, ecdh -> nx_crypto_ecdh_scratch_buffer); }else if (op == NX_CRYPTO_EC_KEY_PAIR_GENERATE) { ... } else if (op == NX_CRYPTO_DH_SETUP) { /* Setup local key pair. */ extended_output = (NX_CRYPTO_EXTENDED_OUTPUT *)output; status = _nx_crypto_ecdh_setup(ecdh, extended_output -> nx_crypto_extended_output_data, extended_output -> nx_crypto_extended_output_length_in_byte, &extended_output -> nx_crypto_extended_output_actual_size, ecdh -> nx_crypto_ecdh_curve, ecdh -> nx_crypto_ecdh_scratch_buffer); }else if (op == NX_CRYPTO_DH_SETUP) { ... } else if (op == NX_CRYPTO_DH_KEY_PAIR_IMPORT) { if (key == NX_CRYPTO_NULL) { return(NX_CRYPTO_PTR_ERROR); }if (key == NX_CRYPTO_NULL) { ... } /* Import local key pair. */ status = _nx_crypto_ecdh_key_pair_import(ecdh, ecdh -> nx_crypto_ecdh_curve, key, (key_size_in_bits >> 3), input, input_length_in_byte); }else if (op == NX_CRYPTO_DH_KEY_PAIR_IMPORT) { ... } else if (op == NX_CRYPTO_DH_PRIVATE_KEY_EXPORT) { /* Export local private key. */ extended_output = (NX_CRYPTO_EXTENDED_OUTPUT *)output; status = _nx_crypto_ecdh_private_key_export(ecdh, extended_output -> nx_crypto_extended_output_data, extended_output -> nx_crypto_extended_output_length_in_byte, &extended_output -> nx_crypto_extended_output_actual_size); }else if (op == NX_CRYPTO_DH_PRIVATE_KEY_EXPORT) { ... } else if (op == NX_CRYPTO_DH_CALCULATE) { /* Compute shared secret. */ extended_output = (NX_CRYPTO_EXTENDED_OUTPUT *)output; status = _nx_crypto_ecdh_compute_secret(ecdh, extended_output -> nx_crypto_extended_output_data, extended_output -> nx_crypto_extended_output_length_in_byte, &extended_output -> nx_crypto_extended_output_actual_size, input, input_length_in_byte, ecdh -> nx_crypto_ecdh_scratch_buffer); }else if (op == NX_CRYPTO_DH_CALCULATE) { ... } else { status = NX_CRYPTO_NOT_SUCCESSFUL; }else { ... } return(status); }{ ... }