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
|
/***************************************************************************
* Copyright (c) 2024 Microsoft Corporation
* Copyright (c) 2025-present Eclipse ThreadX Contributors
*
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/** */
/** NetX Crypto Component */
/** */
/** 3DES Encryption Standard (Triple DES) */
/** */
/**************************************************************************/
/**************************************************************************/
#include "nx_crypto_3des.h"
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_crypto_3des_key_set PORTABLE C */
/* 6.1.11 */
/* AUTHOR */
/* */
/* Timothy Stapko, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function sets up the encryption keys for the 3DES algorithm. */
/* It must be called before either _nx_crypto_3des_encrypt or */
/* _nx_crypto_3des_decrypt can be called. */
/* */
/* INPUT */
/* */
/* context 3DES context pointer */
/* key 24 bytes key */
/* */
/* OUTPUT */
/* */
/* status Completion status */
/* */
/* CALLS */
/* */
/* _nx_crypto_des_key_set Set the key for DES */
/* */
/* CALLED BY */
/* */
/* _nx_crypto_method_3des_init Init the method for 3DES */
/* */
/**************************************************************************/
NX_CRYPTO_KEEP UINT _nx_crypto_3des_key_set(NX_CRYPTO_3DES *context, UCHAR key[24])
{
_nx_crypto_des_key_set(&context -> des_1, key); /* lgtm[cpp/weak-cryptographic-algorithm] */
_nx_crypto_des_key_set(&context -> des_2, key + 8); /* lgtm[cpp/weak-cryptographic-algorithm] */
_nx_crypto_des_key_set(&context -> des_3, key + 16); /* lgtm[cpp/weak-cryptographic-algorithm] */
return(NX_CRYPTO_SUCCESS);
}
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_crypto_3des_encrypt PORTABLE C */
/* 6.1.11 */
/* AUTHOR */
/* */
/* Timothy Stapko, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function uses the 3DES algorithm to encrypt 8-bytes (64-bits). */
/* The result is 8 encrypted bytes. Note that the caller must make */
/* sure the source and destination are 8-bytes in size! */
/* */
/* INPUT */
/* */
/* context 3DES context pointer */
/* source 8-byte source */
/* destination 8-byte destination */
/* length The length of output buffer */
/* */
/* OUTPUT */
/* */
/* status Completion status */
/* */
/* CALLS */
/* */
/* _nx_crypto_des_encrypt Perform DES mode encryption */
/* _nx_crypto_des_decrypt Perform DES mode decryption */
/* */
/* CALLED BY */
/* */
/* _nx_crypto_method_3des_operation Handle 3DES encrypt or decrypt*/
/* */
/**************************************************************************/
NX_CRYPTO_KEEP UINT _nx_crypto_3des_encrypt(NX_CRYPTO_3DES *context, UCHAR source[8],
UCHAR destination[8], UINT length)
{
/* ciphertext = EK3(DK2(EK1(plaintext)))
I.e., DES encrypt with K1, DES decrypt with K2, then DES encrypt with K3. */
_nx_crypto_des_encrypt(&context -> des_1, source, destination, length); /* lgtm[cpp/weak-cryptographic-algorithm] */
_nx_crypto_des_decrypt(&context -> des_2, destination, destination, length); /* lgtm[cpp/weak-cryptographic-algorithm] */
_nx_crypto_des_encrypt(&context -> des_3, destination, destination, length); /* lgtm[cpp/weak-cryptographic-algorithm] */
/* Return successful completion. */
return(NX_CRYPTO_SUCCESS);
}
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_crypto_3des_decrypt PORTABLE C */
/* 6.1.11 */
/* AUTHOR */
/* */
/* Timothy Stapko, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function uses the 3DES algorithm to decrypt 8-bytes (64-bits). */
/* The result is 8 original source bytes. Note that the caller must */
/* make sure the source and destination are 8-bytes in size! */
/* */
/* INPUT */
/* */
/* context 3DES context pointer */
/* source 8-byte source */
/* destination 8-byte destination */
/* length The length of output buffer */
/* */
/* OUTPUT */
/* */
/* status Completion status */
/* */
/* CALLS */
/* */
/* _nx_crypto_des_encrypt Perform DES mode encryption */
/* _nx_crypto_des_decrypt Perform DES mode decryption */
/* */
/* CALLED BY */
/* */
/* _nx_crypto_method_3des_operation Handle 3DES encrypt or decrypt*/
/* */
/**************************************************************************/
NX_CRYPTO_KEEP UINT _nx_crypto_3des_decrypt(NX_CRYPTO_3DES *context, UCHAR source[8],
UCHAR destination[8], UINT length)
{
/*
plaintext = DK1(EK2(DK3(ciphertext)))
I.e., decrypt with K3, encrypt with K2, then decrypt with K1.
*/
_nx_crypto_des_decrypt(&context -> des_3, source, destination, length); /* lgtm[cpp/weak-cryptographic-algorithm] */
_nx_crypto_des_encrypt(&context -> des_2, destination, destination, length); /* lgtm[cpp/weak-cryptographic-algorithm] */
_nx_crypto_des_decrypt(&context -> des_1, destination, destination, length); /* lgtm[cpp/weak-cryptographic-algorithm] */
/* Return successful completion. */
return(NX_CRYPTO_SUCCESS);
}
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_crypto_method_3des_init PORTABLE C */
/* 6.4.3 */
/* AUTHOR */
/* */
/* Timothy Stapko, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function is the common crypto method init callback for */
/* Microsoft supported 3DES 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 */
/* */
/* _nx_crypto_3des_key_set Set the key for 3DES */
/* */
/* CALLED BY */
/* */
/* Application Code */
/* */
/**************************************************************************/
NX_CRYPTO_KEEP UINT _nx_crypto_method_3des_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_3DES *triple_des_context_ptr;
NX_CRYPTO_PARAMETER_NOT_USED(handle);
NX_CRYPTO_STATE_CHECK
/* Validate input parameters. */
if ((method == NX_CRYPTO_NULL) || (key == NX_CRYPTO_NULL) || (crypto_metadata == NX_CRYPTO_NULL))
{
return(NX_CRYPTO_PTR_ERROR);
}
/* Verify the metadata address is 4-byte aligned. */
if((((ULONG)crypto_metadata) & 0x3) != 0)
{
return(NX_CRYPTO_PTR_ERROR);
}
if(crypto_metadata_size < sizeof(NX_CRYPTO_3DES))
{
return(NX_CRYPTO_PTR_ERROR);
}
if (key_size_in_bits != NX_CRYPTO_3DES_KEY_LEN_IN_BITS) /* lgtm[cpp/weak-cryptographic-algorithm] */
{
return(NX_CRYPTO_UNSUPPORTED_KEY_SIZE);
}
triple_des_context_ptr = (NX_CRYPTO_3DES *)(crypto_metadata);
_nx_crypto_3des_key_set(triple_des_context_ptr, key); /* lgtm[cpp/weak-cryptographic-algorithm] */
return(NX_CRYPTO_SUCCESS);
}
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_crypto_method_3des_cleanup PORTABLE C */
/* 6.4.3 */
/* 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 */
/* */
/**************************************************************************/
NX_CRYPTO_KEEP UINT _nx_crypto_method_3des_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_3DES));
#else
NX_CRYPTO_PARAMETER_NOT_USED(crypto_metadata);
#endif/* NX_SECURE_KEY_CLEAR */
return(NX_CRYPTO_SUCCESS);
}
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_crypto_method_3des_operation PORTABLE C */
/* 6.4.3 */
/* AUTHOR */
/* */
/* Timothy Stapko, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function handles 3des encrypt or decrypt operations. */
/* */
/* INPUT */
/* */
/* op Operation Type */
/* Encrypt, Decrypt, Authenticate*/
/* handler Pointer to crypto context */
/* method Pointer to crypto method */
/* key Pointer to key */
/* key_size_in_bits Length of key size in bits */
/* input Input Stream */
/* input_length_in_byte Input Stream Length */
/* iv_ptr Initialized Vector */
/* output Output Stream */
/* output_length_in_byte Output Stream Length */
/* crypto_metadata Metadata area */
/* crypto_metadata_size Size of the metadata area */
/* packet_ptr Pointer to packet */
/* nx_crypto_hw_process_callback Callback function pointer */
/* */
/* OUTPUT */
/* */
/* status Completion status */
/* */
/* CALLS */
/* */
/* _nx_crypto_cbc_encrypt Perform CBC mode encryption */
/* _nx_crypto_cbc_decrypt Perform CBC mode decryption */
/* */
/* CALLED BY */
/* */
/* Application Code */
/* */
/**************************************************************************/
NX_CRYPTO_KEEP UINT _nx_crypto_method_3des_operation(UINT op, /* Encrypt, Decrypt, Authenticate */
VOID *handler, /* Crypto handler */
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 *packet_ptr, UINT status))
{
UINT status = NX_CRYPTO_NOT_SUCCESSFUL;
NX_CRYPTO_3DES *context;
NX_CRYPTO_PARAMETER_NOT_USED(handler);
NX_CRYPTO_PARAMETER_NOT_USED(key);
NX_CRYPTO_PARAMETER_NOT_USED(key_size_in_bits);
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
if (op == NX_CRYPTO_AUTHENTICATE)
{
/* Incorrect Operation. */
return(NX_CRYPTO_NOT_SUCCESSFUL);
}
if ((method == NX_CRYPTO_NULL) || (crypto_metadata == NX_CRYPTO_NULL))
{
return(NX_CRYPTO_PTR_ERROR);
}
/* Verify the metadata address is 4-byte aligned. */
if((((ULONG)crypto_metadata) & 0x3) != 0)
{
return(NX_CRYPTO_PTR_ERROR);
}
if(crypto_metadata_size < sizeof(NX_CRYPTO_3DES))
{
return(NX_CRYPTO_PTR_ERROR);
}
if (method -> nx_crypto_algorithm != NX_CRYPTO_ENCRYPTION_3DES_CBC) /* lgtm[cpp/weak-cryptographic-algorithm] */
{
/* Incorrect method. */
return(NX_CRYPTO_INVALID_ALGORITHM);
}
context = (NX_CRYPTO_3DES *)crypto_metadata;
switch (op)
{
case NX_CRYPTO_DECRYPT:
{
status = _nx_crypto_cbc_decrypt_init(&(context -> nx_crypto_cbc_context),
iv_ptr, method -> nx_crypto_IV_size_in_bits >> 3);
if (status)
{
break;
}
status = _nx_crypto_cbc_decrypt(context, &(context -> nx_crypto_cbc_context),
(UINT (*)(VOID *, UCHAR *, UCHAR *, UINT))_nx_crypto_3des_decrypt,
input, output, input_length_in_byte,
(NX_CRYPTO_3DES_BLOCK_SIZE_IN_BITS >> 3)); /* lgtm[cpp/weak-cryptographic-algorithm] */
} break;
case NX_CRYPTO_ENCRYPT:
{
status = _nx_crypto_cbc_encrypt_init(&(context -> nx_crypto_cbc_context),
iv_ptr, method -> nx_crypto_IV_size_in_bits >> 3);
if (status)
{
break;
}
status = _nx_crypto_cbc_encrypt(context, &(context -> nx_crypto_cbc_context),
(UINT (*)(VOID *, UCHAR *, UCHAR *, UINT))_nx_crypto_3des_encrypt,
input, output, input_length_in_byte,
(NX_CRYPTO_3DES_BLOCK_SIZE_IN_BITS >> 3)); /* lgtm[cpp/weak-cryptographic-algorithm] */
} break;
case NX_CRYPTO_DECRYPT_INITIALIZE:
{
status = _nx_crypto_cbc_decrypt_init(&(context -> nx_crypto_cbc_context),
iv_ptr, method -> nx_crypto_IV_size_in_bits >> 3);
} break;
case NX_CRYPTO_ENCRYPT_INITIALIZE:
{
status = _nx_crypto_cbc_encrypt_init(&(context -> nx_crypto_cbc_context),
iv_ptr, method -> nx_crypto_IV_size_in_bits >> 3);
} break;
case NX_CRYPTO_DECRYPT_UPDATE:
{
status = _nx_crypto_cbc_decrypt(context, &(context -> nx_crypto_cbc_context),
(UINT (*)(VOID *, UCHAR *, UCHAR *, UINT))_nx_crypto_3des_decrypt,
input, output, input_length_in_byte,
(NX_CRYPTO_3DES_BLOCK_SIZE_IN_BITS >> 3)); /* lgtm[cpp/weak-cryptographic-algorithm] */
} break;
case NX_CRYPTO_ENCRYPT_UPDATE:
{
status = _nx_crypto_cbc_encrypt(context, &(context -> nx_crypto_cbc_context),
(UINT (*)(VOID *, UCHAR *, UCHAR *, UINT))_nx_crypto_3des_encrypt,
input, output, input_length_in_byte,
(NX_CRYPTO_3DES_BLOCK_SIZE_IN_BITS >> 3)); /* lgtm[cpp/weak-cryptographic-algorithm] */
} break;
case NX_CRYPTO_ENCRYPT_CALCULATE:
/* fallthrough */
case NX_CRYPTO_DECRYPT_CALCULATE:
{
/* Nothing to do. */
status = NX_CRYPTO_SUCCESS;
} break;
default:
{
status = NX_CRYPTO_INVALID_ALGORITHM;
} break;
}
return status;
}
|