Coverage Report

Created: 2026-01-06 06:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/cryptofuzz-sp-math-all-8bit/modules/wolfcrypt/ecdsa_generic.cpp
Line
Count
Source
1
#include "ecdsa_generic.h"
2
#include "module_internal.h"
3
#include "shared.h"
4
#include "bn_ops.h"
5
#include <cryptofuzz/util.h>
6
#include <iostream>
7
8
namespace cryptofuzz {
9
namespace module {
10
namespace wolfCrypt_detail {
11
12
#if !defined(WOLFSSL_SP_MATH)
13
#include "custom_curves.h"
14
#endif
15
16
#if defined(CRYPTOFUZZ_WOLFCRYPT_ALLOCATION_FAILURES)
17
    extern bool haveAllocFailure;
18
#endif
19
20
WC_RNG* GetRNG(void);
21
22
ECCKey::ECCKey(Datasource& ds) :
23
29.4k
    ds(ds) {
24
29.4k
    if ( (key = wc_ecc_key_new(nullptr)) == nullptr ) {
25
2.55k
        throw std::exception();
26
2.55k
    }
27
29.4k
}
28
29
26.8k
ECCKey::~ECCKey() {
30
26.8k
    CF_NORET(wc_ecc_key_free(key));
31
26.8k
}
32
33
66.5k
ecc_key* ECCKey::GetPtr(void) {
34
66.5k
    uint8_t* x963 = nullptr;
35
66.5k
    ecc_key* newKey = nullptr;
36
37
66.5k
    bool exportToX963 = false;
38
66.5k
    try {
39
66.5k
        exportToX963 = ds.Get<bool>();
40
66.5k
    } catch ( ... ) { }
41
42
66.5k
    if ( exportToX963 == true ) {
43
5.18k
        CF_CHECK_NE(newKey = wc_ecc_key_new(nullptr), nullptr);
44
45
3.95k
        word32 outLen = 0;
46
47
3.95k
        bool compressed = false;
48
3.95k
        try { compressed  = ds.Get<bool>();} catch ( ... ) { }
49
50
7.35k
        WC_CHECK_EQ(wc_ecc_export_x963_ex(key, nullptr, &outLen, compressed), LENGTH_ONLY_E);
51
7.35k
        x963 = util::malloc(outLen);
52
7.35k
        WC_CHECK_EQ(wc_ecc_export_x963_ex(key, x963, &outLen, compressed), 0);;
53
54
        /* Get the curve id of the old key */
55
1.87k
        int curveID;
56
1.87k
        CF_CHECK_NE(curveID = wc_ecc_get_curve_id(key->idx), ECC_CURVE_INVALID);
57
58
1.87k
        const bool valid = wc_ecc_check_key(key) == 0;
59
60
1.87k
        haveAllocFailure = false;
61
1.87k
        if ( wc_ecc_import_x963_ex(x963, outLen, newKey, curveID) != 0 ) {
62
            /* Allowed to fail if either:
63
             *
64
             * - Compression is used and the input key is invalid
65
             * - An allocation failure occured during wc_ecc_import_x963_ex
66
             */
67
930
            CF_ASSERT((compressed && !valid) || haveAllocFailure, "Cannot import X963-exported ECC key");
68
930
            goto end;
69
930
        }
70
71
946
        if ( compressed ) {
72
547
            CF_CHECK_TRUE(valid);
73
47
        }
74
75
446
        CF_NORET(wc_ecc_key_free(key));
76
446
        key = newKey;
77
446
        newKey = nullptr;
78
446
    }
79
80
66.5k
end:
81
66.5k
    util::free(x963);
82
66.5k
    CF_NORET(wc_ecc_key_free(newKey));
83
84
66.5k
    return key;
85
66.5k
}
86
87
8.82k
bool ECCKey::SetCurve(const Type& curveType) {
88
8.82k
    bool ret = false;
89
90
8.82k
#if !defined(WOLFSSL_SP_MATH)
91
8.82k
    bool useCustomCurve = false;
92
93
8.82k
    try {
94
8.82k
        useCustomCurve = ds.Get<uint8_t>();
95
8.82k
    } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
96
8.82k
    useCustomCurve = false;
97
98
8.82k
    if ( useCustomCurve == false )
99
8.82k
#endif
100
8.82k
    {
101
#if defined(CRYPTOFUZZ_WOLFCRYPT_DEBUG)
102
        std::cout << "Using native curve" << std::endl;
103
#endif
104
8.82k
        std::optional<int> curveID;
105
106
8.82k
        CF_CHECK_NE(curveID = wolfCrypt_detail::toCurveID(curveType), std::nullopt);
107
6.28k
        this->curveID = *curveID;
108
109
6.28k
        WC_CHECK_EQ(wc_ecc_set_curve(GetPtr(), 0, *curveID), 0);
110
6.28k
    }
111
0
#if !defined(WOLFSSL_SP_MATH)
112
0
    else {
113
 #if defined(CRYPTOFUZZ_WOLFCRYPT_DEBUG)
114
        std::cout << "Using custom curve" << std::endl;
115
 #endif
116
0
        const ecc_set_type* curveSpec;
117
0
        CF_CHECK_NE(curveSpec = GetCustomCurve(curveType.Get()), nullptr);
118
0
        WC_CHECK_EQ(wc_ecc_set_custom_curve(GetPtr(), curveSpec), 0);
119
0
        this->curveID = ECC_CURVE_CUSTOM;
120
0
    }
121
6.28k
#endif
122
123
6.28k
    ret = true;
124
125
8.82k
end:
126
8.82k
    return ret;
127
6.28k
}
128
129
8.69k
bool ECCKey::LoadPrivateKey(const component::Bignum& priv) {
130
8.69k
    bool ret = false;
131
8.69k
    std::optional<std::vector<uint8_t>> priv_bytes;
132
133
8.69k
    CF_CHECK_NE(priv_bytes = wolfCrypt_bignum::Bignum::ToBin(ds, priv), std::nullopt);
134
135
8.34k
    WC_CHECK_EQ(wc_ecc_import_private_key_ex(priv_bytes->data(), priv_bytes->size(), nullptr, 0, GetPtr(), *curveID), 0);
136
137
7.41k
    ret = true;
138
139
8.69k
end:
140
8.69k
    return ret;
141
7.41k
}
142
143
5.73k
std::optional<ECCPoint> ECCKey::MakePub(void) {
144
5.73k
    std::optional<ECCPoint> ret = std::nullopt;
145
146
5.73k
    ECCPoint pub(ds, *curveID);
147
5.73k
    WC_CHECK_EQ(wc_ecc_make_pub(GetPtr(), pub.GetPtr()), 0);
148
5.31k
    pub.SetInitialized();
149
150
5.31k
    return pub;
151
152
420
end:
153
420
    return ret;
154
5.73k
}
155
156
2.14k
bool ECCKey::SetRNG(void) {
157
2.14k
    bool ret = false;
158
159
2.14k
    WC_CHECK_EQ(wc_ecc_set_rng(GetPtr(), wolfCrypt_detail::GetRNG()), 0);
160
161
2.14k
    ret = true;
162
2.14k
end:
163
2.14k
    return ret;
164
2.14k
}
165
166
ECCPoint::ECCPoint(Datasource& ds, const int curveID) :
167
38.1k
    ds(ds),
168
38.1k
    curveID(curveID) {
169
38.1k
    if ( (point = wc_ecc_new_point_h(nullptr)) == nullptr ) {
170
1.01k
        throw std::exception();
171
1.01k
    }
172
38.1k
}
173
174
/* Copy constructor */
175
ECCPoint::ECCPoint(const ECCPoint& other) :
176
5.25k
    ds(other.ds),
177
5.25k
    curveID(other.curveID),
178
5.25k
    locked(other.locked),
179
5.25k
    initialized(other.initialized)
180
5.25k
{
181
5.25k
    if ( (point = wc_ecc_new_point_h(nullptr)) == nullptr ) {
182
11
        throw std::exception();
183
11
    }
184
185
5.24k
    if ( wc_ecc_copy_point(other.point, point) != 0 ) {
186
1
        CF_NORET(wc_ecc_del_point(point));
187
1
        throw std::exception();
188
1
    }
189
5.24k
}
190
191
42.3k
ECCPoint::~ECCPoint() {
192
42.3k
    CF_NORET(wc_ecc_del_point(point));
193
42.3k
}
194
195
56.4k
ecc_point* ECCPoint::GetPtr() {
196
56.4k
    uint8_t* out = nullptr;
197
56.4k
    ecc_point* newPoint = nullptr;
198
199
56.4k
    if ( locked == false && initialized == true ) {
200
10.8k
        bool exportToDER = false;
201
202
10.8k
        try {
203
10.8k
            exportToDER = ds.Get<bool>();
204
10.8k
        } catch ( ... ) { }
205
206
10.8k
        if ( exportToDER == true ) {
207
467
            bool compressed = false;
208
467
            try {
209
467
                compressed = ds.Get<bool>();
210
467
            } catch ( ... ) { }
211
212
467
            const int curveIdx = wc_ecc_get_curve_idx(curveID);
213
467
            CF_CHECK_NE(newPoint = wc_ecc_new_point_h(nullptr), nullptr);
214
215
348
            word32 outSz = 0xFFFF;
216
348
            try { outSz = ds.Get<word32>() & 0xFFFF; } catch ( ... ) { }
217
218
348
            out = util::malloc(outSz);
219
220
348
            if ( compressed == false ) {
221
184
                WC_CHECK_EQ(wc_ecc_export_point_der(curveIdx, point, out, &outSz), 0);
222
164
            } else {
223
164
                WC_CHECK_EQ(wc_ecc_export_point_der(curveIdx, point, out, &outSz), 0);
224
                //WC_CHECK_EQ(wc_ecc_export_point_der_compressed(curveIdx, point, out, &outSz), 0);
225
52
            }
226
227
124
            {
228
124
                haveAllocFailure = false;
229
124
                const bool success = wc_ecc_import_point_der(out, outSz, curveIdx, newPoint) == 0;
230
231
124
                if ( success ) {
232
                    /* Point imported. Replace old point with new point. */
233
234
121
                    CF_NORET(wc_ecc_del_point(point));
235
121
                    point = newPoint;
236
121
                    newPoint = nullptr;
237
121
                } else {
238
                    /* Failure */
239
240
3
                    if ( haveAllocFailure == false ) {
241
                        /* Failure is only acceptable if an allocation failure occured, crash otherwise */
242
0
                        CF_ASSERT(0, "Cannot import DER-exported ECC point");
243
0
                    }
244
3
                }
245
124
            }
246
124
        }
247
10.8k
    }
248
249
56.4k
end:
250
56.4k
    util::free(out);
251
56.4k
    CF_NORET(wc_ecc_del_point(newPoint));
252
253
56.4k
    return point;
254
56.4k
}
255
256
bool ECCPoint::Set(
257
        const component::BignumPair& xy,
258
        const uint64_t curveType,
259
        const bool pointCheck,
260
17.0k
        const bool mp_init_size_ok) {
261
17.0k
    bool ret = false;
262
263
17.0k
    bool projective = false;
264
17.0k
    try {
265
17.0k
        projective = ds.Get<bool>();
266
17.0k
    } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
267
268
17.0k
    wolfCrypt_bignum::Bignum x(ds, mp_init_size_ok);
269
17.0k
    wolfCrypt_bignum::Bignum y(ds, mp_init_size_ok);
270
17.0k
    wolfCrypt_bignum::Bignum z(ds, mp_init_size_ok);
271
272
17.0k
    if ( projective == false ) {
273
10.7k
        CF_CHECK_TRUE(x.Set(xy.first));
274
10.5k
        CF_CHECK_TRUE(y.Set(xy.second));
275
10.4k
        CF_CHECK_TRUE(z.Set("1"));
276
10.4k
    } else {
277
6.33k
        const auto proj = util::ToRandomProjective(
278
6.33k
                ds,
279
6.33k
                xy.first.ToTrimmedString(),
280
6.33k
                xy.second.ToTrimmedString(),
281
6.33k
                curveType);
282
6.33k
        CF_CHECK_TRUE(x.Set(proj[0]));
283
5.33k
        CF_CHECK_TRUE(y.Set(proj[1]));
284
4.82k
        CF_CHECK_TRUE(z.Set(proj[2]));
285
4.68k
    }
286
287
30.2k
    WC_CHECK_EQ(mp_copy(x.GetPtr(), point->x), MP_OKAY);
288
30.2k
    WC_CHECK_EQ(mp_copy(y.GetPtr(), point->y), MP_OKAY);
289
15.1k
    WC_CHECK_EQ(mp_copy(z.GetPtr(), point->z), MP_OKAY);
290
291
15.1k
    if ( pointCheck ) {
292
0
        CF_CHECK_TRUE(CurveCheck());
293
0
    }
294
295
15.1k
    SetInitialized();
296
297
15.1k
    ret = true;
298
299
16.6k
end:
300
16.6k
    return ret;
301
15.1k
}
302
303
10.7k
bool ECCPoint::ToProjective(wolfCrypt_bignum::Bignum& prime) {
304
10.7k
    bool ret = false;
305
306
10.7k
    wolfCrypt_bignum::Bignum mu(ds);
307
308
10.7k
    WC_CHECK_EQ(mp_montgomery_calc_normalization(mu.GetPtr(), prime.GetPtr()), MP_OKAY);
309
310
10.7k
    if ( mp_cmp_d(mu.GetPtr(), 1) != MP_EQ ) {
311
8.64k
        WC_CHECK_EQ(mp_mulmod(point->x, mu.GetPtr(), prime.GetPtr(), point->x), MP_OKAY);
312
8.49k
        WC_CHECK_EQ(mp_mulmod(point->y, mu.GetPtr(), prime.GetPtr(), point->y), MP_OKAY);
313
8.42k
        WC_CHECK_EQ(mp_mulmod(point->z, mu.GetPtr(), prime.GetPtr(), point->z), MP_OKAY);
314
8.39k
    }
315
316
    /* Lock so it isn't attempted to export/import the projective point in GetPtr(),
317
     * which will lead to incorrect results
318
     */
319
10.4k
    Lock();
320
321
10.4k
    ret = true;
322
323
10.7k
end:
324
10.7k
    return ret;
325
10.4k
}
326
327
12.2k
bool ECCPoint::CurveCheck(void) const {
328
12.2k
    const int curveIdx = wc_ecc_get_curve_idx(curveID);
329
12.2k
    return wc_ecc_point_is_on_curve(point, curveIdx) == 0;
330
12.2k
}
331
332
22.5k
void ECCPoint::Lock(void) {
333
22.5k
    locked = true;
334
22.5k
}
335
336
20.0k
void ECCPoint::SetInitialized(void) {
337
20.0k
    initialized = true;
338
20.0k
}
339
340
5.14k
std::optional<component::BignumPair> ECCPoint::ToBignumPair(void) {
341
5.14k
    std::optional<component::BignumPair> ret = std::nullopt;
342
343
5.14k
    wolfCrypt_bignum::Bignum pub_x(GetPtr()->x, ds);
344
345
    /* Pointer is stored in pub_x; lock to prevent UAF */
346
5.14k
    Lock();
347
348
5.14k
    wolfCrypt_bignum::Bignum pub_y(GetPtr()->y, ds);
349
350
5.14k
    std::optional<std::string> pub_x_str, pub_y_str;
351
5.14k
    CF_CHECK_NE(pub_x_str = pub_x.ToDecString(), std::nullopt);
352
5.13k
    CF_CHECK_NE(pub_y_str = pub_y.ToDecString(), std::nullopt);
353
354
5.11k
    ret = { *pub_x_str, *pub_y_str };
355
5.14k
end:
356
357
5.14k
    return ret;
358
5.11k
}
359
360
2.92k
int ECCPoint::Compare(ECCPoint& other) {
361
2.92k
    return wc_ecc_cmp_point(GetPtr(), other.GetPtr());
362
2.92k
}
363
364
3.05k
std::optional<bool> ECCPoint::IsNeg(ECCPoint& other, wolfCrypt_bignum::Bignum& prime) {
365
3.05k
    std::optional<bool> ret = std::nullopt;
366
367
3.05k
    wolfCrypt_bignum::Bignum neg(ds);
368
3.05k
    if ( mp_sub(prime.GetPtr(), other.GetPtr()->y, neg.GetPtr()) == MP_OKAY) {
369
3.00k
        ret = static_cast<bool>(mp_cmp(point->y, neg.GetPtr()) == MP_EQ);
370
3.00k
    }
371
372
3.05k
    return ret;
373
3.05k
}
374
375
4.74k
std::optional<component::ECC_PublicKey> OpECC_PrivateToPublic_Generic(operation::ECC_PrivateToPublic& op) {
376
4.74k
    std::optional<component::ECC_PublicKey> ret = std::nullopt;
377
4.74k
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
378
4.74k
    wolfCrypt_detail::SetGlobalDs(&ds);
379
380
4.74k
    try {
381
4.74k
        ECCKey key(ds);
382
383
        /* Initialize */
384
4.74k
        {
385
4.74k
            CF_CHECK_EQ(key.SetCurve(op.curveType), true);
386
2.83k
            CF_CHECK_EQ(key.LoadPrivateKey(op.priv), true);
387
2.00k
        }
388
389
        /* Process/Finalize */
390
0
        {
391
2.00k
            auto pub = key.MakePub();
392
2.00k
            CF_CHECK_NE(pub, std::nullopt);
393
394
1.76k
            ret = pub->ToBignumPair();
395
1.76k
        }
396
1.76k
    } catch ( ... ) { }
397
398
4.74k
end:
399
400
4.74k
    wolfCrypt_detail::UnsetGlobalDs();
401
4.74k
    return ret;
402
4.74k
}
403
404
7.29k
std::optional<bool> OpECC_ValidatePubkey_Generic(operation::ECC_ValidatePubkey& op) {
405
7.29k
    std::optional<bool> ret = std::nullopt;
406
7.29k
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
407
7.29k
    wolfCrypt_detail::SetGlobalDs(&ds);
408
409
7.29k
    std::optional<int> curveID;
410
411
7.29k
    try {
412
7.29k
        ECCKey key(ds);
413
7.29k
        {
414
7.29k
            const char* name = nullptr;
415
416
7.29k
            CF_CHECK_NE(curveID = wolfCrypt_detail::toCurveID(op.curveType), std::nullopt);
417
418
6.01k
            CF_CHECK_NE(name = wc_ecc_get_name(*curveID), nullptr);
419
420
5.98k
            WC_CHECK_EQ(wc_ecc_import_raw(
421
5.38k
                        key.GetPtr(),
422
5.38k
                        util::DecToHex(op.pub.first.ToTrimmedString()).c_str(),
423
5.38k
                        util::DecToHex(op.pub.second.ToTrimmedString()).c_str(),
424
5.38k
                        nullptr,
425
5.38k
                        name), 0);
426
5.38k
            haveAllocFailure = false;
427
5.38k
            ret = wc_ecc_check_key(key.GetPtr()) == 0;
428
5.38k
            if ( *ret == false && haveAllocFailure == true ) {
429
1.00k
                ret = std::nullopt;
430
1.00k
            }
431
5.38k
        }
432
5.38k
    } catch ( ... ) { }
433
434
7.29k
end:
435
436
7.29k
    wolfCrypt_detail::UnsetGlobalDs();
437
7.29k
    return ret;
438
7.29k
}
439
440
5.99k
std::optional<bool> OpECDSA_Verify_Generic(operation::ECDSA_Verify& op) {
441
    /* These are currently not supported by wc_Hash
442
     * See also ZD 16119
443
     */
444
5.99k
    switch ( op.digestType.Get() ) {
445
0
        case CF_DIGEST("MD2"):
446
0
        case CF_DIGEST("MD4"):
447
0
        case CF_DIGEST("BLAKE2B512"):
448
0
        case CF_DIGEST("BLAKE2S256"):
449
0
        case CF_DIGEST("SHA3-224"):
450
0
        case CF_DIGEST("SHA3-256"):
451
0
        case CF_DIGEST("SHA3-384"):
452
0
        case CF_DIGEST("SHA3-512"):
453
0
            return std::nullopt;
454
5.99k
    }
455
456
5.99k
    std::optional<bool> ret = std::nullopt;
457
5.99k
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
458
5.99k
    wolfCrypt_detail::SetGlobalDs(&ds);
459
460
5.99k
    std::optional<int> curveID;
461
5.99k
    uint8_t* sig = nullptr;
462
5.99k
    uint8_t* hash = nullptr;
463
5.99k
    word32 sigSz = ECC_MAX_SIG_SIZE;
464
5.99k
    int verify;
465
466
5.99k
    bool ctIsEmpty = false;
467
5.99k
    bool randomSigSz = false;
468
5.99k
    bool hashNotFound = false;
469
470
5.99k
    {
471
5.99k
        try {
472
5.99k
            randomSigSz = ds.Get<bool>();
473
5.99k
            if ( randomSigSz ) {
474
1.14k
                sigSz = ds.Get<uint8_t>();
475
1.14k
            }
476
5.99k
        } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
477
478
5.99k
        sig = util::malloc(sigSz);
479
5.99k
    }
480
481
5.99k
    try {
482
5.99k
        ECCKey key(ds);
483
5.99k
        {
484
5.99k
            const char* name = nullptr;
485
486
5.99k
            CF_CHECK_NE(curveID = wolfCrypt_detail::toCurveID(op.curveType), std::nullopt);
487
488
5.40k
            CF_CHECK_NE(name = wc_ecc_get_name(*curveID), nullptr);
489
490
5.38k
            haveAllocFailure = false;
491
5.38k
            ret = false;
492
493
5.38k
            WC_CHECK_EQ(wc_ecc_import_raw(
494
5.22k
                        key.GetPtr(),
495
5.22k
                        util::DecToHex(op.signature.pub.first.ToTrimmedString()).c_str(),
496
5.22k
                        util::DecToHex(op.signature.pub.second.ToTrimmedString()).c_str(),
497
5.22k
                        nullptr,
498
5.22k
                        name), 0);
499
5.22k
            WC_CHECK_EQ(wc_ecc_check_key(key.GetPtr()), 0);
500
4.76k
        }
501
502
4.76k
        WC_CHECK_EQ(wc_ecc_rs_to_sig(
503
4.42k
                    util::DecToHex(op.signature.signature.first.ToTrimmedString()).c_str(),
504
4.42k
                    util::DecToHex(op.signature.signature.second.ToTrimmedString()).c_str(),
505
4.42k
                    sig, &sigSz), 0);
506
507
4.42k
        if ( op.digestType.Get() == CF_DIGEST("NULL") ) {
508
3.99k
            const auto CT = op.cleartext.ECDSA_RandomPad(ds, op.curveType);
509
3.99k
            ctIsEmpty = CT.GetSize() == 0;
510
3.99k
            WC_CHECK_EQ(wc_ecc_verify_hash(sig, sigSz, CT.GetPtr(), CT.GetSize(), &verify, key.GetPtr()), 0);
511
3.43k
        } else {
512
436
            std::optional<wc_HashType> hashType;
513
436
            hashNotFound = true;
514
436
            CF_CHECK_NE(hashType = wolfCrypt_detail::toHashType(op.digestType), std::nullopt);
515
436
            hashNotFound = false;
516
517
436
            const auto hashSize = wc_HashGetDigestSize(*hashType);
518
436
            hash = util::malloc(hashSize);
519
520
436
            WC_CHECK_EQ(wc_Hash(*hashType, op.cleartext.GetPtr(), op.cleartext.GetSize(), hash, hashSize), 0);
521
522
436
            const auto CT = Buffer(hash, hashSize).ECDSA_RandomPad(ds, op.curveType);
523
436
            ctIsEmpty = CT.GetSize() == 0;
524
436
            WC_CHECK_EQ(wc_ecc_verify_hash(sig, sigSz, CT.GetPtr(), CT.GetSize(), &verify, key.GetPtr()), 0);
525
436
        }
526
527
3.86k
        ret = verify ? true : false;
528
3.86k
    } catch ( ... ) { }
529
530
5.99k
end:
531
532
5.99k
    util::free(sig);
533
5.99k
    util::free(hash);
534
535
5.99k
    wolfCrypt_detail::UnsetGlobalDs();
536
537
5.99k
    if ( ret && *ret == false ) {
538
2.00k
        if ( haveAllocFailure ) {
539
547
            ret = std::nullopt;
540
1.45k
        } else if ( randomSigSz ) {
541
291
            ret = std::nullopt;
542
1.16k
        } else if ( ctIsEmpty ) {
543
            /* wolfCrypt ECDSA verification will fail if the input msg is empty */
544
63
            ret = std::nullopt;
545
1.10k
        } else if ( hashNotFound ) {
546
0
            ret = std::nullopt;
547
1.10k
        } else if ( op.digestType.Is(CF_DIGEST("NULL")) && op.cleartext.IsZero() ) {
548
167
            ret = std::nullopt;
549
167
        }
550
2.00k
    }
551
552
5.99k
    return ret;
553
5.99k
}
554
555
595
std::optional<component::ECCSI_Signature> OpECCSI_Sign(operation::ECCSI_Sign& op) {
556
#if !defined(WOLFCRYPT_HAVE_ECCSI)
557
    (void)op;
558
    return std::nullopt;
559
#else
560
595
    std::optional<component::ECCSI_Signature> ret = std::nullopt;
561
562
595
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
563
595
    wolfCrypt_detail::SetGlobalDs(&ds);
564
565
595
    uint8_t hashSz = WC_MAX_DIGEST_SIZE;
566
595
    static_assert(WC_MAX_DIGEST_SIZE < 256);
567
568
595
    uint8_t* hash = util::malloc(hashSz);
569
570
595
    uint8_t* encoded = nullptr;
571
595
    EccsiKey eccsi;
572
595
    bool eccsi_initialized = false;
573
574
595
    try {
575
595
        int size;
576
595
        std::optional<component::BignumPair> pubbn = std::nullopt;
577
578
595
        {
579
            /* Private to public */
580
595
            ECCKey key(ds);
581
595
            CF_CHECK_EQ(key.SetCurve(op.curveType), true);
582
468
            CF_CHECK_GT(size = key.GetPtr()->dp->size, 0);
583
468
            CF_CHECK_EQ(key.LoadPrivateKey(op.priv), true);
584
383
            auto pub = key.MakePub();
585
383
            CF_CHECK_NE(pub, std::nullopt);
586
300
            CF_CHECK_NE(pubbn = pub->ToBignumPair(), std::nullopt);
587
588
            /* Encode private and public */
589
296
            encoded = util::malloc(size * 3);
590
591
296
            WC_CHECK_EQ(mp_to_unsigned_bin_len(key.GetPtr()->k, encoded, size), 0);
592
252
            WC_CHECK_EQ(mp_to_unsigned_bin_len(pub->GetPtr()->x, encoded + size, size), 0);
593
252
            WC_CHECK_EQ(mp_to_unsigned_bin_len(pub->GetPtr()->y, encoded + (size * 2), size), 0);
594
252
        }
595
596
0
        {
597
252
            std::optional<int> curveId;
598
252
            CF_CHECK_NE(curveId = toCurveID(op.curveType), std::nullopt);
599
600
252
            WC_CHECK_EQ(wc_InitEccsiKey_ex(&eccsi, size, *curveId, nullptr, -1), 0);
601
248
            eccsi_initialized = true;
602
603
248
            WC_CHECK_EQ(wc_ImportEccsiKey(&eccsi, encoded, size * 3), 0);
604
248
            {
605
248
                uint8_t sig[257]; /* XXX random size */
606
248
                word32 sigSz = sizeof(sig);
607
248
                ECCPoint pvt(ds, *curveId);
608
248
                wolfCrypt_bignum::Bignum ssk(ds);
609
248
                std::optional<wc_HashType> hashType;
610
248
                CF_CHECK_NE(hashType = toHashType(op.digestType), std::nullopt);
611
131
                WC_CHECK_EQ(wc_MakeEccsiPair(
612
131
                            &eccsi,
613
131
                            &rng,
614
131
                            *hashType,
615
131
                            op.id.GetPtr(),
616
131
                            op.id.GetSize(),
617
131
                            ssk.GetPtr(),
618
131
                            pvt.GetPtr()), 0);
619
131
                WC_CHECK_EQ(wc_HashEccsiId(
620
131
                            &eccsi,
621
131
                            *hashType,
622
131
                            op.id.GetPtr(),
623
131
                            op.id.GetSize(),
624
131
                            pvt.GetPtr(),
625
131
                            hash,
626
131
                            &hashSz), 0);
627
131
                WC_CHECK_EQ(wc_SetEccsiHash(&eccsi, hash, hashSz), 0);
628
131
                WC_CHECK_EQ(wc_SetEccsiPair(&eccsi, ssk.GetPtr(), pvt.GetPtr()), 0);
629
131
                WC_CHECK_EQ(wc_SignEccsiHash(
630
131
                            &eccsi,
631
131
                            &rng,
632
131
                            *hashType,
633
131
                            op.cleartext.GetPtr(),
634
131
                            op.cleartext.GetSize(),
635
131
                            sig, &sigSz), 0);
636
131
                CF_ASSERT(sigSz == static_cast<size_t>(size) * 4 + 1, "Unexpected signature size");
637
131
                {
638
131
                    wolfCrypt_bignum::Bignum r(ds), s(ds);
639
131
                    std::optional<std::string> r_str, s_str;
640
131
                    std::optional<component::BignumPair> pvtbn = std::nullopt;
641
642
131
                    WC_CHECK_EQ(mp_read_unsigned_bin(r.GetPtr(), sig, size), 0);
643
131
                    CF_CHECK_NE(r_str = r.ToDecString(), std::nullopt);
644
645
131
                    WC_CHECK_EQ(mp_read_unsigned_bin(s.GetPtr(), sig + size, size), 0);
646
131
                    CF_CHECK_NE(s_str = s.ToDecString(), std::nullopt);
647
648
131
                    CF_CHECK_NE(pvtbn = pvt.ToBignumPair(), std::nullopt);
649
650
131
                    ret = component::ECCSI_Signature{
651
131
                        component::BignumPair{*r_str, *s_str},
652
131
                        *pubbn,
653
131
                        *pvtbn};
654
131
                }
655
131
            }
656
131
        }
657
131
    } catch ( ... ) { }
658
659
595
end:
660
595
    if ( eccsi_initialized ) {
661
121
        CF_NORET(wc_FreeEccsiKey(&eccsi));
662
121
    }
663
595
    util::free(hash);
664
595
    util::free(encoded);
665
595
    wolfCrypt_detail::UnsetGlobalDs();
666
595
    return ret;
667
595
#endif
668
595
}
669
670
161
std::optional<bool> OpECCSI_Verify(operation::ECCSI_Verify& op) {
671
#if !defined(WOLFCRYPT_HAVE_ECCSI)
672
    (void)op;
673
    return std::nullopt;
674
#else
675
161
    std::optional<bool> ret = std::nullopt;
676
161
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
677
161
    wolfCrypt_detail::SetGlobalDs(&ds);
678
679
161
    uint8_t hashSz = WC_MAX_DIGEST_SIZE;
680
161
    static_assert(WC_MAX_DIGEST_SIZE < 256);
681
682
161
    EccsiKey eccsi;
683
684
161
    uint8_t* hash = util::malloc(hashSz);
685
161
    std::optional<wc_HashType> hashType;
686
161
    std::optional<int> curveId;
687
161
    std::vector<uint8_t> pub, sig;
688
161
    int verified;
689
161
    int size;
690
161
    bool eccsi_initialized = false;
691
692
161
    CF_CHECK_NE(curveId = toCurveID(op.curveType), std::nullopt);
693
76
    CF_CHECK_NE(hashType = toHashType(op.digestType), std::nullopt);
694
695
0
    haveAllocFailure = false;
696
0
    ret = false;
697
698
0
    try {
699
0
    {
700
0
        ECCKey key(ds);
701
0
        CF_CHECK_EQ(key.SetCurve(op.curveType), true);
702
0
        CF_CHECK_GT(size = key.GetPtr()->dp->size, 0);
703
0
    }
704
705
    /* Pub to binary */
706
0
    {
707
0
        const auto x = op.signature.pub.first.ToBin(size);
708
0
        CF_CHECK_NE(x, std::nullopt);
709
0
        pub.insert(pub.end(), x->begin(), x->end());
710
711
0
        const auto y = op.signature.pub.second.ToBin(size);
712
0
        CF_CHECK_NE(y, std::nullopt);
713
0
        pub.insert(pub.end(), y->begin(), y->end());
714
0
    }
715
716
    /* Sig to binary */
717
0
    {
718
0
        const auto r = op.signature.signature.first.ToBin(size);
719
0
        CF_CHECK_NE(r, std::nullopt);
720
0
        sig.insert(sig.end(), r->begin(), r->end());
721
722
0
        const auto s = op.signature.signature.second.ToBin(size);
723
0
        CF_CHECK_NE(s, std::nullopt);
724
0
        sig.insert(sig.end(), s->begin(), s->end());
725
726
0
        sig.push_back(0x04);
727
728
0
        const auto pvt_x = op.signature.pvt.first.ToBin(size);
729
0
        CF_CHECK_NE(pvt_x, std::nullopt);
730
0
        sig.insert(sig.end(), pvt_x->begin(), pvt_x->end());
731
732
0
        const auto pvt_y = op.signature.pvt.second.ToBin(size);
733
0
        CF_CHECK_NE(pvt_y, std::nullopt);
734
0
        sig.insert(sig.end(), pvt_y->begin(), pvt_y->end());
735
0
    }
736
737
0
    {
738
0
        ECCPoint pvt(ds, *curveId);
739
740
0
        WC_CHECK_EQ(wc_InitEccsiKey_ex(&eccsi, size, *curveId, nullptr, -1), 0);
741
0
        eccsi_initialized = true;
742
743
0
        WC_CHECK_EQ(wc_ImportEccsiPublicKey(&eccsi,
744
0
                    pub.data(), pub.size(), 0), 0);
745
0
        WC_CHECK_EQ(wc_DecodeEccsiPvtFromSig(&eccsi, sig.data(), sig.size(), pvt.GetPtr()), 0);
746
0
        WC_CHECK_EQ(wc_HashEccsiId(
747
0
                    &eccsi,
748
0
                    *hashType,
749
0
                    op.id.GetPtr(&ds), op.id.GetSize(),
750
0
                    pvt.GetPtr(),
751
0
                    hash,
752
0
                    &hashSz), 0);
753
0
        WC_CHECK_EQ(wc_SetEccsiHash(&eccsi, hash, hashSz), 0);
754
0
        WC_CHECK_EQ(wc_VerifyEccsiHash(
755
0
                    &eccsi,
756
0
                    *hashType,
757
0
                    op.cleartext.GetPtr(&ds), op.cleartext.GetSize(),
758
0
                    sig.data(), sig.size(),
759
0
                    &verified), 0);
760
0
        ret = verified == 1;
761
0
    }
762
0
    } catch ( ... ) { }
763
764
161
end:
765
161
    if ( eccsi_initialized ) {
766
0
        CF_NORET(wc_FreeEccsiKey(&eccsi));
767
0
    }
768
161
    util::free(hash);
769
161
    wolfCrypt_detail::UnsetGlobalDs();
770
161
    if ( ret && *ret == false ) {
771
0
        if ( haveAllocFailure ) {
772
0
            ret = std::nullopt;
773
0
        }
774
0
    }
775
161
    return ret;
776
0
#endif
777
0
}
778
779
5.98k
std::optional<component::ECDSA_Signature> OpECDSA_Sign_Generic(operation::ECDSA_Sign& op) {
780
5.98k
    std::optional<component::ECDSA_Signature> ret = std::nullopt;
781
5.98k
    if ( op.UseRandomNonce() == false && op.UseSpecifiedNonce() == false ) {
782
412
        return ret;
783
412
    }
784
785
5.57k
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
786
5.57k
    wolfCrypt_detail::SetGlobalDs(&ds);
787
788
5.57k
    uint8_t* sig = nullptr;
789
5.57k
    word32 sigSz = ECC_MAX_SIG_SIZE;
790
5.57k
    Buffer CT;
791
5.57k
    uint8_t* hash = nullptr;
792
5.57k
    size_t hashSize = 0;
793
5.57k
    uint8_t* nonce_bytes = nullptr;
794
5.57k
    wolfCrypt_bignum::Bignum nonce(ds);
795
796
    /* Initialize r, s using mp_init(), not mp_init_size(),
797
     * as the latter is not compatible with DecodeECC_DSA_Sig().
798
     *
799
     * See ZD 15728.
800
     */
801
5.57k
    wolfCrypt_bignum::Bignum r(ds, false), s(ds, false);
802
803
5.57k
    CF_CHECK_NE(op.priv.ToTrimmedString(), "0");
804
805
5.35k
    {
806
5.35k
        try {
807
5.35k
            sigSz = ds.Get<uint8_t>();
808
5.35k
        } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
809
810
5.35k
        sig = util::malloc(sigSz);
811
5.35k
    }
812
813
5.35k
    try {
814
5.35k
        ECCKey key(ds);
815
5.35k
        CF_CHECK_EQ(key.SetCurve(op.curveType), true);
816
4.67k
        CF_CHECK_EQ(key.LoadPrivateKey(op.priv), true);
817
4.48k
        key.GetPtr()->type = ECC_PRIVATEKEY_ONLY;
818
819
4.48k
        if ( op.UseSpecifiedNonce() == true ) {
820
1.53k
            CF_CHECK_EQ(nonce.Set(op.nonce.ToString(ds)), true);
821
822
1.49k
            const size_t nonce_bytes_size = mp_unsigned_bin_size(nonce.GetPtr());
823
824
            /* Convert nonce to byte array */
825
1.49k
            nonce_bytes = util::malloc(nonce_bytes_size);
826
1.49k
            CF_CHECK_EQ(mp_to_unsigned_bin(nonce.GetPtr(), nonce_bytes), 0);
827
828
            /* Set nonce */
829
1.44k
            WC_CHECK_EQ(wc_ecc_sign_set_k(nonce_bytes, nonce_bytes_size, key.GetPtr()), 0);
830
1.27k
        }
831
832
4.23k
        auto pub = key.MakePub();
833
4.23k
        CF_CHECK_NE(pub, std::nullopt);
834
835
4.13k
        if ( op.digestType.Get() == CF_DIGEST("NULL") ) {
836
3.77k
            CT = op.cleartext.ECDSA_RandomPad(ds, op.curveType);
837
3.77k
        } else {
838
365
            std::optional<wc_HashType> hashType;
839
365
            CF_CHECK_NE(hashType = wolfCrypt_detail::toHashType(op.digestType), std::nullopt);
840
841
365
            hashSize = wc_HashGetDigestSize(*hashType);
842
365
            hash = util::malloc(hashSize);
843
844
365
            WC_CHECK_EQ(wc_Hash(*hashType, op.cleartext.GetPtr(), op.cleartext.GetSize(), hash, hashSize), 0);
845
846
365
            CT = Buffer(hash, hashSize).ECDSA_RandomPad(ds, op.curveType);
847
365
        }
848
849
        /* Sign */
850
7.60k
        WC_CHECK_EQ(wc_ecc_sign_hash(CT.GetPtr(), CT.GetSize(), sig, &sigSz, wolfCrypt_detail::GetRNG(), key.GetPtr()), 0);
851
852
        /* Verify */
853
7.60k
        {
854
7.60k
            int verify;
855
7.60k
            haveAllocFailure = false;
856
7.60k
            if ( wc_ecc_verify_hash(sig, sigSz, CT.GetPtr(), CT.GetSize(), &verify, key.GetPtr()) == 0 && haveAllocFailure == false ) {
857
3.04k
                CF_ASSERT(verify, "Cannot verify generated signature");
858
3.04k
            }
859
7.60k
        }
860
861
3.46k
        CF_CHECK_EQ(DecodeECC_DSA_Sig(sig, sigSz, r.GetPtr(), s.GetPtr()), 0);
862
3.46k
        {
863
3.46k
            std::optional<std::string> r_str, s_str;
864
865
3.46k
            if ( op.curveType.Get() == CF_ECC_CURVE("secp256k1") ) {
866
227
                wolfCrypt_bignum::Bignum SMax(ds);
867
227
                CF_CHECK_EQ(SMax.Set("57896044618658097711785492504343953926418782139537452191302581570759080747168"), true);
868
227
                if ( mp_cmp(s.GetPtr(), SMax.GetPtr()) == 1 ) {
869
126
                    wolfCrypt_bignum::Bignum SSub(ds);
870
126
                    CF_CHECK_EQ(SSub.Set("115792089237316195423570985008687907852837564279074904382605163141518161494337"), true);
871
126
                    CF_CHECK_EQ(mp_sub(SSub.GetPtr(), s.GetPtr(), s.GetPtr()), 0);
872
126
                }
873
3.24k
            } else if ( op.curveType.Get() == CF_ECC_CURVE("secp256r1") ) {
874
581
                wolfCrypt_bignum::Bignum SMax(ds);
875
581
                CF_CHECK_EQ(SMax.Set("57896044605178124381348723474703786764998477612067880171211129530534256022184"), true);
876
579
                if ( mp_cmp(s.GetPtr(), SMax.GetPtr()) == 1 ) {
877
297
                    wolfCrypt_bignum::Bignum SSub(ds);
878
297
                    CF_CHECK_EQ(SSub.Set("115792089210356248762697446949407573529996955224135760342422259061068512044369"), true);
879
297
                    CF_CHECK_EQ(mp_sub(SSub.GetPtr(), s.GetPtr(), s.GetPtr()), 0);
880
297
                }
881
579
            }
882
883
3.46k
            CF_CHECK_NE(r_str = r.ToDecString(), std::nullopt);
884
3.46k
            CF_CHECK_NE(s_str = s.ToDecString(), std::nullopt);
885
886
3.45k
            const auto pub2 = pub->ToBignumPair();
887
3.45k
            CF_CHECK_NE(pub2, std::nullopt);
888
889
3.45k
            ret = component::ECDSA_Signature({*r_str, *s_str}, *pub2);
890
3.45k
        }
891
3.45k
    } catch ( ... ) { }
892
5.57k
end:
893
894
5.57k
    util::free(sig);
895
5.57k
    util::free(hash);
896
5.57k
    util::free(nonce_bytes);
897
898
5.57k
    wolfCrypt_detail::UnsetGlobalDs();
899
900
5.57k
    return ret;
901
5.35k
}
902
903
1.37k
std::optional<component::Ciphertext> OpECIES_Encrypt_Generic(operation::ECIES_Encrypt& op) {
904
1.37k
    std::optional<component::Ciphertext> ret = std::nullopt;
905
#if !defined(HAVE_ECC_ENCRYPT)
906
    (void)op;
907
#else
908
1.37k
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
909
1.37k
    wolfCrypt_detail::SetGlobalDs(&ds);
910
1.37k
    uint8_t* out = nullptr;
911
912
1.37k
    CF_CHECK_TRUE(op.cipherType.Is(CF_CIPHER("AES_128_CBC")));
913
883
    CF_CHECK_EQ(op.iv, std::nullopt);
914
915
829
    try {
916
829
        ECCKey priv(ds), pub(ds);
917
829
        word32 outSz = ds.Get<uint32_t>() % 0xFFFFFF;
918
919
        /* Initialize private key */
920
829
        {
921
829
            CF_CHECK_TRUE(priv.SetCurve(op.curveType));
922
767
            CF_CHECK_TRUE(priv.LoadPrivateKey(op.priv));
923
729
            CF_CHECK_TRUE(priv.SetRNG());
924
729
        }
925
926
        /* Initialize public key */
927
0
        {
928
729
            std::optional<int> curveID;
929
729
            const char* name = nullptr;
930
931
729
            CF_CHECK_NE(curveID = wolfCrypt_detail::toCurveID(op.curveType), std::nullopt);
932
933
729
            CF_CHECK_NE(name = wc_ecc_get_name(*curveID), nullptr);
934
935
729
            WC_CHECK_EQ(wc_ecc_import_raw(
936
690
                        pub.GetPtr(),
937
690
                        util::DecToHex(op.pub.first.ToTrimmedString()).c_str(),
938
690
                        util::DecToHex(op.pub.second.ToTrimmedString()).c_str(),
939
690
                        nullptr,
940
690
                        name), 0);
941
942
690
            CF_CHECK_TRUE(pub.SetRNG());
943
690
        }
944
945
0
        out = util::malloc(outSz);
946
947
690
        WC_CHECK_EQ(wc_ecc_encrypt(priv.GetPtr(), pub.GetPtr(), op.cleartext.GetPtr(), op.cleartext.GetSize(), out, &outSz, nullptr), 0);
948
949
527
        ret = component::Ciphertext(Buffer(out, outSz));
950
527
    } catch ( ... ) { }
951
952
1.37k
end:
953
1.37k
    util::free(out);
954
955
1.37k
    wolfCrypt_detail::UnsetGlobalDs();
956
1.37k
#endif
957
1.37k
    return ret;
958
829
}
959
960
1.44k
std::optional<component::Cleartext> OpECIES_Decrypt_Generic(operation::ECIES_Decrypt& op) {
961
1.44k
    std::optional<component::Cleartext> ret = std::nullopt;
962
#if !defined(HAVE_ECC_ENCRYPT)
963
    (void)op;
964
#else
965
1.44k
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
966
1.44k
    wolfCrypt_detail::SetGlobalDs(&ds);
967
1.44k
    uint8_t* out = nullptr;
968
969
1.44k
    CF_CHECK_TRUE(op.cipherType.Is(CF_CIPHER("AES_128_CBC")));
970
932
    CF_CHECK_EQ(op.iv, std::nullopt);
971
972
919
    try {
973
919
        ECCKey priv(ds), pub(ds);
974
919
        word32 outSz = ds.Get<uint32_t>() % 0xFFFFFF;
975
976
        /* Initialize private key */
977
919
        {
978
919
            CF_CHECK_TRUE(priv.SetCurve(op.curveType));
979
851
            CF_CHECK_TRUE(priv.LoadPrivateKey(op.priv));
980
800
            CF_CHECK_TRUE(priv.SetRNG());
981
800
        }
982
983
        /* Initialize public key */
984
0
        {
985
800
            std::optional<int> curveID;
986
800
            const char* name = nullptr;
987
988
800
            CF_CHECK_NE(curveID = wolfCrypt_detail::toCurveID(op.curveType), std::nullopt);
989
990
800
            CF_CHECK_NE(name = wc_ecc_get_name(*curveID), nullptr);
991
992
800
            WC_CHECK_EQ(wc_ecc_import_raw(
993
758
                        pub.GetPtr(),
994
758
                        util::DecToHex(op.pub.first.ToTrimmedString()).c_str(),
995
758
                        util::DecToHex(op.pub.second.ToTrimmedString()).c_str(),
996
758
                        nullptr,
997
758
                        name), 0);
998
999
758
            CF_CHECK_TRUE(pub.SetRNG());
1000
758
        }
1001
1002
0
        out = util::malloc(outSz);
1003
1004
758
        WC_CHECK_EQ(wc_ecc_decrypt(priv.GetPtr(), pub.GetPtr(), op.ciphertext.GetPtr(), op.ciphertext.GetSize(), out, &outSz, nullptr), 0);
1005
1006
398
        ret = component::Cleartext(Buffer(out, outSz));
1007
398
    } catch ( ... ) { }
1008
1009
1.44k
end:
1010
1.44k
    util::free(out);
1011
1012
1.44k
    wolfCrypt_detail::UnsetGlobalDs();
1013
1.44k
#endif
1014
1.44k
    return ret;
1015
919
}
1016
1017
1.23k
std::optional<component::Secret> OpECDH_Derive(operation::ECDH_Derive& op) {
1018
1.23k
    std::optional<component::Secret> ret = std::nullopt;
1019
1.23k
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
1020
1.23k
    wolfCrypt_detail::SetGlobalDs(&ds);
1021
1022
    /* try/catch because ECCKey constructor may throw if allocation fails */
1023
1.23k
    try {
1024
        /* TODO dynamic size */
1025
1.23k
        uint8_t out[1024];
1026
1.23k
        word32 outlen = sizeof(out);
1027
1.23k
        ECCKey priv(ds), pub(ds);
1028
1029
        /* Initialize private key */
1030
1.23k
        {
1031
1.23k
            CF_CHECK_TRUE(priv.SetCurve(op.curveType));
1032
965
            CF_CHECK_TRUE(priv.LoadPrivateKey(op.priv));
1033
865
            CF_CHECK_TRUE(priv.SetRNG());
1034
865
            WC_CHECK_EQ(
1035
865
                    wc_ecc_set_flags(priv.GetPtr(), WC_ECC_FLAG_COFACTOR), 0);
1036
865
        }
1037
1038
        /* Initialize public key */
1039
0
        {
1040
865
            std::optional<int> curveID;
1041
865
            const char* name = nullptr;
1042
1043
865
            CF_CHECK_NE(curveID = wolfCrypt_detail::toCurveID(op.curveType), std::nullopt);
1044
1045
865
            CF_CHECK_NE(name = wc_ecc_get_name(*curveID), nullptr);
1046
1047
865
            WC_CHECK_EQ(wc_ecc_import_raw(
1048
698
                        pub.GetPtr(),
1049
698
                        util::DecToHex(op.pub.first.ToTrimmedString()).c_str(),
1050
698
                        util::DecToHex(op.pub.second.ToTrimmedString()).c_str(),
1051
698
                        nullptr,
1052
698
                        name), 0);
1053
698
            WC_CHECK_EQ(wc_ecc_check_key(pub.GetPtr()), 0);
1054
510
        }
1055
1056
510
        WC_CHECK_EQ(wc_ecc_shared_secret(priv.GetPtr(), pub.GetPtr(), out, &outlen), 0);
1057
1058
477
        ret = component::Secret(Buffer(out, outlen));
1059
477
    } catch ( ... ) { }
1060
1061
1.23k
end:
1062
1.23k
    wolfCrypt_detail::UnsetGlobalDs();
1063
1064
1.23k
    return ret;
1065
1.23k
}
1066
1067
2.23k
std::optional<component::ECC_Point> OpECC_Point_Add(operation::ECC_Point_Add& op) {
1068
2.23k
    std::optional<component::ECC_Point> ret = std::nullopt;
1069
2.23k
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
1070
2.23k
    wolfCrypt_detail::SetGlobalDs(&ds);
1071
1072
2.23k
    std::optional<int> curveID;
1073
2.23k
    int curveIdx;
1074
2.23k
    const ecc_set_type* curve = nullptr;
1075
2.23k
    bool failed = false;
1076
2.23k
    bool valid = false;
1077
2.23k
    std::optional<bool> is_neg = std::nullopt;
1078
1079
2.23k
    CF_CHECK_NE(curveID = wolfCrypt_detail::toCurveID(op.curveType), std::nullopt);
1080
1081
2.02k
    CF_CHECK_NE(curveIdx = wc_ecc_get_curve_idx(*curveID), ECC_CURVE_INVALID);
1082
2.02k
    CF_CHECK_NE(curve = wc_ecc_get_curve_params(curveIdx), nullptr);
1083
1084
    /* try/catch because ECCPoint constructor may throw if allocation fails */
1085
2.02k
    try {
1086
2.02k
        ECCPoint res(ds, *curveID), a(ds, *curveID), b(ds, *curveID);
1087
2.02k
        wolfCrypt_bignum::Bignum Af(ds), prime(ds), mu(ds);
1088
2.02k
        mp_digit mp;
1089
1090
        /* Set points */
1091
2.02k
        CF_CHECK_TRUE(a.Set(op.a, op.curveType.Get()));
1092
1.86k
        CF_CHECK_TRUE(b.Set(op.b, op.curveType.Get()));
1093
1094
1.68k
        valid = a.CurveCheck() && b.CurveCheck();
1095
1096
        /* Retrieve curve parameter */
1097
1.68k
        CF_CHECK_EQ(Af.Set(util::HexToDec(curve->Af)), true);
1098
1.64k
        CF_CHECK_EQ(prime.Set(util::HexToDec(curve->prime)), true);
1099
1100
1.61k
        is_neg = a.IsNeg(b, prime);
1101
1102
1.61k
        CF_CHECK_TRUE(a.ToProjective(prime));
1103
1.53k
        CF_CHECK_TRUE(b.ToProjective(prime));
1104
1105
1.50k
        WC_CHECK_EQ(mp_montgomery_setup(prime.GetPtr(), &mp), MP_OKAY);
1106
1107
#if defined(WOLFSSL_SP_MATH) && !defined(WOLFSSL_PUBLIC_ECC_ADD_DBL)
1108
        goto end;
1109
#else
1110
1.50k
        {
1111
1.50k
            bool dbl = false;
1112
1.50k
            bool safe = false;
1113
1114
1.50k
            if ( a.Compare(b) == MP_EQ ) {
1115
263
                try { dbl = ds.Get<bool>(); } catch ( ... ) { }
1116
263
            }
1117
1118
1.50k
#if !(defined(WOLFSSL_SP_MATH) && defined(WOLFSSL_PUBLIC_ECC_ADD_DBL))
1119
1.50k
            try { safe = ds.Get<bool>(); } catch ( ... ) { }
1120
1.50k
#endif
1121
1122
1.50k
            if ( safe ) {
1123
#if defined(WOLFSSL_SP_MATH) && defined(WOLFSSL_PUBLIC_ECC_ADD_DBL)
1124
                CF_UNREACHABLE();
1125
#else
1126
47
                int infinity;
1127
1128
47
                if ( dbl == true ) {
1129
11
                    failed = true;
1130
11
                    haveAllocFailure = false;
1131
11
                    WC_CHECK_EQ(ecc_projective_dbl_point_safe(a.GetPtr(), res.GetPtr(), Af.GetPtr(), prime.GetPtr(), mp), 0);
1132
7
                    failed = false;
1133
36
                } else {
1134
36
                    failed = true;
1135
36
                    haveAllocFailure = false;
1136
36
                    WC_CHECK_EQ(ecc_projective_add_point_safe(a.GetPtr(), b.GetPtr(), res.GetPtr(), Af.GetPtr(), prime.GetPtr(), mp, &infinity), 0);
1137
16
                    failed = false;
1138
16
                }
1139
47
#endif
1140
1.19k
            } else {
1141
1.19k
                if ( dbl == true ) {
1142
14
                    failed = true;
1143
14
                    haveAllocFailure = false;
1144
14
                    WC_CHECK_EQ(ecc_projective_dbl_point(a.GetPtr(), res.GetPtr(), Af.GetPtr(), prime.GetPtr(), mp), 0);
1145
8
                    failed = false;
1146
1.18k
                } else {
1147
1.18k
                    failed = true;
1148
1.18k
                    haveAllocFailure = false;
1149
1.18k
                    WC_CHECK_EQ(ecc_projective_add_point(a.GetPtr(), b.GetPtr(), res.GetPtr(), Af.GetPtr(), prime.GetPtr(), mp), 0);
1150
1.05k
                    failed = false;
1151
1152
                    /* Do not return result if inputs are negations of the same point */
1153
1.05k
                    CF_CHECK_NE(is_neg, std::nullopt);
1154
1.02k
                    CF_CHECK_FALSE(*is_neg);
1155
960
                }
1156
1.19k
            }
1157
1158
            /* Lock to prevent exporting the projective point */
1159
991
            res.Lock();
1160
991
        }
1161
0
#endif
1162
1163
        /* To affine */
1164
991
        WC_CHECK_EQ(ecc_map(res.GetPtr(), prime.GetPtr(), mp), MP_OKAY);
1165
1166
        /* Only return the result if the input points are valid */
1167
974
        CF_CHECK_TRUE(valid);
1168
1169
        /* Only return the result if the output point is valid */
1170
178
        CF_CHECK_TRUE(res.CurveCheck());
1171
1172
169
        ret = res.ToBignumPair();
1173
267
    } catch ( ... ) { }
1174
1175
2.23k
end:
1176
2.23k
    wolfCrypt_detail::UnsetGlobalDs();
1177
1178
2.23k
    if ( valid ) {
1179
239
        if ( !haveAllocFailure ) {
1180
231
            if ( is_neg && !*is_neg ) {
1181
176
                CF_ASSERT(!failed, "Point adding failed");
1182
176
            }
1183
231
        }
1184
239
    }
1185
1186
2.23k
    return ret;
1187
2.23k
}
1188
1189
4.34k
std::optional<component::ECC_Point> OpECC_Point_Mul(operation::ECC_Point_Mul& op) {
1190
4.34k
    std::optional<component::ECC_Point> ret = std::nullopt;
1191
4.34k
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
1192
4.34k
    wolfCrypt_detail::SetGlobalDs(&ds);
1193
1194
4.34k
    std::optional<int> curveID;
1195
4.34k
    int curveIdx;
1196
4.34k
    const ecc_set_type* curve = nullptr;
1197
1198
4.34k
    CF_CHECK_NE(curveID = wolfCrypt_detail::toCurveID(op.curveType), std::nullopt);
1199
1200
4.14k
    CF_CHECK_NE(curveIdx = wc_ecc_get_curve_idx(*curveID), ECC_CURVE_INVALID);
1201
4.12k
    CF_CHECK_NE(curve = wc_ecc_get_curve_params(curveIdx), nullptr);
1202
1203
    /* try/catch because ECCPoint constructor may throw if allocation fails */
1204
4.12k
    try {
1205
4.12k
        ECCPoint res(ds, *curveID), a(ds, *curveID);
1206
4.12k
        wolfCrypt_bignum::Bignum b(ds), Af(ds), prime(ds);
1207
4.12k
        bool valid = false;
1208
1209
        /* Set point */
1210
4.12k
        CF_CHECK_TRUE(a.Set(op.a, op.curveType.Get()));
1211
3.74k
        valid = a.CurveCheck();
1212
1213
        /* Set multiplier */
1214
3.74k
        CF_CHECK_EQ(b.Set(op.b.ToString(ds)), true);
1215
1216
        /* Retrieve curve parameters */
1217
3.66k
        CF_CHECK_EQ(Af.Set(util::HexToDec(curve->Af)), true);
1218
3.62k
        CF_CHECK_EQ(prime.Set(util::HexToDec(curve->prime)), true);
1219
1220
        /* Multiply */
1221
3.58k
        WC_CHECK_EQ(wc_ecc_mulmod_ex(b.GetPtr(), a.GetPtr(), res.GetPtr(), Af.GetPtr(), prime.GetPtr(), 1, nullptr), 0);
1222
1223
        /* Only return the result if the input point is valid */
1224
3.04k
        CF_CHECK_TRUE(valid);
1225
1226
612
        ret = res.ToBignumPair();
1227
612
    } catch ( ... ) { }
1228
1229
4.34k
end:
1230
4.34k
    wolfCrypt_detail::UnsetGlobalDs();
1231
1232
4.34k
    return ret;
1233
4.12k
}
1234
1235
5.48k
std::optional<component::ECC_Point> OpECC_Point_Dbl(operation::ECC_Point_Dbl& op) {
1236
5.48k
    std::optional<component::ECC_Point> ret = std::nullopt;
1237
5.48k
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
1238
5.48k
    wolfCrypt_detail::SetGlobalDs(&ds);
1239
1240
5.48k
    std::optional<int> curveID;
1241
5.48k
    int curveIdx;
1242
5.48k
    const ecc_set_type* curve = nullptr;
1243
5.48k
    bool failed = false;
1244
5.48k
    bool valid = false;
1245
1246
5.48k
    CF_CHECK_NE(curveID = wolfCrypt_detail::toCurveID(op.curveType), std::nullopt);
1247
1248
5.26k
    CF_CHECK_NE(curveIdx = wc_ecc_get_curve_idx(*curveID), ECC_CURVE_INVALID);
1249
5.26k
    CF_CHECK_NE(curve = wc_ecc_get_curve_params(curveIdx), nullptr);
1250
1251
    /* try/catch because ECCPoint constructor may throw if allocation fails */
1252
5.26k
    try {
1253
5.26k
        ECCPoint res(ds, *curveID), a(ds, *curveID);
1254
5.26k
        wolfCrypt_bignum::Bignum Af(ds), prime(ds), mu(ds);
1255
5.26k
        mp_digit mp;
1256
1257
        /* Set points */
1258
5.26k
        CF_CHECK_TRUE(a.Set(op.a, op.curveType.Get()));
1259
1260
4.32k
        valid = a.CurveCheck();
1261
1262
        /* Retrieve curve parameter */
1263
4.32k
        CF_CHECK_EQ(Af.Set(util::HexToDec(curve->Af)), true);
1264
4.26k
        CF_CHECK_EQ(prime.Set(util::HexToDec(curve->prime)), true);
1265
1266
4.21k
        CF_CHECK_TRUE(a.ToProjective(prime));
1267
1268
4.05k
        WC_CHECK_EQ(mp_montgomery_setup(prime.GetPtr(), &mp), MP_OKAY);
1269
1270
#if defined(WOLFSSL_SP_MATH) && !defined(WOLFSSL_PUBLIC_ECC_ADD_DBL)
1271
        goto end;
1272
#else
1273
4.05k
        {
1274
4.05k
            bool safe = false;
1275
1276
4.05k
#if !(defined(WOLFSSL_SP_MATH) && defined(WOLFSSL_PUBLIC_ECC_ADD_DBL))
1277
4.05k
            try { safe = ds.Get<bool>(); } catch ( ... ) { }
1278
4.05k
#endif
1279
1280
4.05k
            if ( safe ) {
1281
#if defined(WOLFSSL_SP_MATH) && defined(WOLFSSL_PUBLIC_ECC_ADD_DBL)
1282
                CF_UNREACHABLE();
1283
#else
1284
47
                failed = true;
1285
47
                haveAllocFailure = false;
1286
47
                WC_CHECK_EQ(ecc_projective_dbl_point_safe(a.GetPtr(), res.GetPtr(), Af.GetPtr(), prime.GetPtr(), mp), 0);
1287
20
                failed = false;
1288
20
#endif
1289
3.56k
            } else {
1290
3.56k
                failed = true;
1291
3.56k
                haveAllocFailure = false;
1292
3.56k
                WC_CHECK_EQ(ecc_projective_dbl_point(a.GetPtr(), res.GetPtr(), Af.GetPtr(), prime.GetPtr(), mp), 0);
1293
3.43k
                failed = false;
1294
3.43k
            }
1295
1296
            /* Lock to prevent exporting the projective point */
1297
3.45k
            res.Lock();
1298
3.45k
        }
1299
0
#endif
1300
1301
        /* To affine */
1302
3.45k
        WC_CHECK_EQ(ecc_map(res.GetPtr(), prime.GetPtr(), mp), MP_OKAY);
1303
1304
        /* Only return the result if the input points are valid */
1305
3.39k
        CF_CHECK_TRUE(valid);
1306
1307
        /* Only return the result if the output point is valid */
1308
197
        CF_CHECK_TRUE(res.CurveCheck());
1309
1310
141
        ret = res.ToBignumPair();
1311
445
    } catch ( ... ) { }
1312
1313
5.48k
end:
1314
5.48k
    if ( valid ) {
1315
219
        if ( !haveAllocFailure ) {
1316
170
            CF_ASSERT(!failed, "Point doubling failed");
1317
170
        }
1318
219
    }
1319
1320
5.48k
    wolfCrypt_detail::UnsetGlobalDs();
1321
1322
5.48k
    return ret;
1323
5.48k
}
1324
1325
0
std::optional<bool> OpECC_Point_Cmp(operation::ECC_Point_Cmp& op) {
1326
#if 0
1327
    std::optional<bool> ret = std::nullopt;
1328
    Datasource ds(op.modifier.GetPtr(), op.modifier.GetSize());
1329
    wolfCrypt_detail::SetGlobalDs(&ds);
1330
1331
    std::optional<int> curveID;
1332
    int curveIdx;
1333
    const ecc_set_type* curve = nullptr;
1334
1335
    CF_CHECK_NE(curveID = wolfCrypt_detail::toCurveID(op.curveType), std::nullopt);
1336
1337
    CF_CHECK_NE(curveIdx = wc_ecc_get_curve_idx(*curveID), ECC_CURVE_INVALID);
1338
    CF_CHECK_NE(curve = wc_ecc_get_curve_params(curveIdx), nullptr);
1339
1340
    /* try/catch because ECCPoint constructor may throw if allocation fails */
1341
    try {
1342
        ECCPoint res(ds, *curveID), a(ds, *curveID), b(ds, *curveID);
1343
        wolfCrypt_bignum::Bignum Af(ds), prime(ds), mu(ds);
1344
        bool valid = false;
1345
1346
        /* Set points */
1347
        CF_CHECK_TRUE(a.Set(op.a, op.curveType.Get()));
1348
        CF_CHECK_TRUE(b.Set(op.b, op.curveType.Get()));
1349
1350
        valid = a.CurveCheck() && b.CurveCheck();
1351
        (void)valid;
1352
1353
        /* Retrieve curve parameter */
1354
        CF_CHECK_EQ(Af.Set(util::HexToDec(curve->Af)), true);
1355
        CF_CHECK_EQ(prime.Set(util::HexToDec(curve->prime)), true);
1356
1357
        CF_CHECK_TRUE(a.ToProjective(prime));
1358
        CF_CHECK_TRUE(b.ToProjective(prime));
1359
1360
        ret = wc_ecc_cmp_point(a.GetPtr(), b.GetPtr()) == MP_EQ;
1361
    } catch ( ... ) { }
1362
1363
end:
1364
    wolfCrypt_detail::UnsetGlobalDs();
1365
1366
    return ret;
1367
#else
1368
    /* ZD 15599 */
1369
0
    (void)op;
1370
0
    return std::nullopt;
1371
0
#endif
1372
0
}
1373
1374
} /* namespace wolfCrypt_detail */
1375
} /* namespace module */
1376
} /* namespace cryptofuzz */