Coverage Report

Created: 2026-07-16 06:50

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/wolfssl/wolfcrypt/src/misc.c
Line
Count
Source
1
/* misc.c
2
 *
3
 * Copyright (C) 2006-2026 wolfSSL Inc.
4
 *
5
 * This file is part of wolfSSL.
6
 *
7
 * wolfSSL is free software; you can redistribute it and/or modify
8
 * it under the terms of the GNU General Public License as published by
9
 * the Free Software Foundation; either version 3 of the License, or
10
 * (at your option) any later version.
11
 *
12
 * wolfSSL is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License
18
 * along with this program; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
20
 */
21
/*
22
23
DESCRIPTION
24
This module implements the arithmetic-shift right, left, byte swapping, XOR,
25
masking and clearing memory logic.
26
27
*/
28
29
#ifdef WOLFSSL_VIS_FOR_TESTS
30
    #ifdef HAVE_CONFIG_H
31
        #include <config.h>
32
    #endif
33
    #include <wolfssl/wolfcrypt/settings.h>
34
#else
35
    #include <wolfssl/wolfcrypt/libwolfssl_sources.h>
36
#endif
37
38
#ifndef WOLF_CRYPT_MISC_C
39
#define WOLF_CRYPT_MISC_C
40
41
#include <wolfssl/wolfcrypt/misc.h>
42
43
/* inlining these functions is a huge speed increase and a small size decrease,
44
   because the functions are smaller than function call setup/cleanup, e.g.,
45
   md5 benchmark is twice as fast with inline.  If you don't want it, then
46
   define NO_INLINE and compile this file into wolfssl, otherwise it's used as
47
   a source header
48
 */
49
50
/* Check for if compiling misc.c when not needed. */
51
#if !defined(WOLFSSL_MISC_INCLUDED) && !defined(NO_INLINE)
52
    #ifndef WOLFSSL_IGNORE_FILE_WARN
53
        #warning misc.c does not need to be compiled when using inline (NO_INLINE not defined)
54
    #endif
55
56
#else
57
58
59
#if defined(__ICCARM__)
60
    #include <intrinsics.h>
61
#endif
62
63
64
#ifdef INTEL_INTRINSICS
65
66
    #include <stdlib.h>      /* get intrinsic definitions */
67
68
    /* for non visual studio probably need no long version, 32 bit only
69
     * i.e., _rotl and _rotr */
70
    #pragma intrinsic(_lrotl, _lrotr)
71
72
    WC_MISC_STATIC WC_INLINE word32 rotlFixed(word32 x, word32 y)
73
    {
74
        return y ? _lrotl(x, y) : x;
75
    }
76
77
    WC_MISC_STATIC WC_INLINE word32 rotrFixed(word32 x, word32 y)
78
    {
79
        return y ? _lrotr(x, y) : x;
80
    }
81
82
#elif defined(__CCRX__)
83
84
    #include <builtin.h>      /* get intrinsic definitions */
85
86
    #if !defined(NO_INLINE)
87
88
    #define rotlFixed(x, y) _builtin_rotl(x, y)
89
90
    #define rotrFixed(x, y) _builtin_rotr(x, y)
91
92
    #else /* create real function */
93
94
    WC_MISC_STATIC WC_INLINE word32 rotlFixed(word32 x, word32 y)
95
    {
96
        return _builtin_rotl(x, y);
97
    }
98
99
    WC_MISC_STATIC WC_INLINE word32 rotrFixed(word32 x, word32 y)
100
    {
101
        return _builtin_rotr(x, y);
102
    }
103
104
    #endif
105
106
#else /* generic */
107
/* This routine performs a left circular arithmetic shift of <x> by <y> value. */
108
109
    WC_MISC_STATIC WC_INLINE word32 rotlFixed(word32 x, word32 y)
110
0
    {
111
0
        return (x << y) | (x >> (sizeof(x) * 8 - y));
112
0
    }
Unexecuted instantiation: ssl.c:rotlFixed
Unexecuted instantiation: tls.c:rotlFixed
Unexecuted instantiation: tls13.c:rotlFixed
Unexecuted instantiation: hmac.c:rotlFixed
Unexecuted instantiation: hash.c:rotlFixed
Unexecuted instantiation: kdf.c:rotlFixed
Unexecuted instantiation: random.c:rotlFixed
Unexecuted instantiation: sha256.c:rotlFixed
Unexecuted instantiation: rsa.c:rotlFixed
Unexecuted instantiation: sp_int.c:rotlFixed
Unexecuted instantiation: aes.c:rotlFixed
Unexecuted instantiation: sha.c:rotlFixed
Unexecuted instantiation: sha512.c:rotlFixed
Unexecuted instantiation: sha3.c:rotlFixed
Unexecuted instantiation: wolfmath.c:rotlFixed
Unexecuted instantiation: memory.c:rotlFixed
Unexecuted instantiation: dh.c:rotlFixed
Unexecuted instantiation: asn.c:rotlFixed
Unexecuted instantiation: coding.c:rotlFixed
Unexecuted instantiation: poly1305.c:rotlFixed
Unexecuted instantiation: chacha.c:rotlFixed
Unexecuted instantiation: ecc.c:rotlFixed
Unexecuted instantiation: wc_mlkem.c:rotlFixed
Unexecuted instantiation: wc_mlkem_poly.c:rotlFixed
Unexecuted instantiation: internal.c:rotlFixed
Unexecuted instantiation: keys.c:rotlFixed
Unexecuted instantiation: wc_encrypt.c:rotlFixed
Unexecuted instantiation: pwdbased.c:rotlFixed
113
114
/* This routine performs a right circular arithmetic shift of <x> by <y> value. */
115
    WC_MISC_STATIC WC_INLINE word32 rotrFixed(word32 x, word32 y)
116
0
    {
117
0
        return (x >> y) | (x << (sizeof(x) * 8 - y));
118
0
    }
Unexecuted instantiation: ssl.c:rotrFixed
Unexecuted instantiation: tls.c:rotrFixed
Unexecuted instantiation: tls13.c:rotrFixed
Unexecuted instantiation: hmac.c:rotrFixed
Unexecuted instantiation: hash.c:rotrFixed
Unexecuted instantiation: kdf.c:rotrFixed
Unexecuted instantiation: random.c:rotrFixed
Unexecuted instantiation: sha256.c:rotrFixed
Unexecuted instantiation: rsa.c:rotrFixed
Unexecuted instantiation: sp_int.c:rotrFixed
Unexecuted instantiation: aes.c:rotrFixed
Unexecuted instantiation: sha.c:rotrFixed
Unexecuted instantiation: sha512.c:rotrFixed
Unexecuted instantiation: sha3.c:rotrFixed
Unexecuted instantiation: wolfmath.c:rotrFixed
Unexecuted instantiation: memory.c:rotrFixed
Unexecuted instantiation: dh.c:rotrFixed
Unexecuted instantiation: asn.c:rotrFixed
Unexecuted instantiation: coding.c:rotrFixed
Unexecuted instantiation: poly1305.c:rotrFixed
Unexecuted instantiation: chacha.c:rotrFixed
Unexecuted instantiation: ecc.c:rotrFixed
Unexecuted instantiation: wc_mlkem.c:rotrFixed
Unexecuted instantiation: wc_mlkem_poly.c:rotrFixed
Unexecuted instantiation: internal.c:rotrFixed
Unexecuted instantiation: keys.c:rotrFixed
Unexecuted instantiation: wc_encrypt.c:rotrFixed
Unexecuted instantiation: pwdbased.c:rotrFixed
119
120
#endif
121
122
/* This routine performs a left circular arithmetic shift of <x> by <y> value */
123
WC_MISC_STATIC WC_INLINE word16 rotlFixed16(word16 x, word16 y)
124
0
{
125
0
    return (word16)((x << y) | (x >> (sizeof(x) * 8U - y)));
126
0
}
Unexecuted instantiation: ssl.c:rotlFixed16
Unexecuted instantiation: tls.c:rotlFixed16
Unexecuted instantiation: tls13.c:rotlFixed16
Unexecuted instantiation: hmac.c:rotlFixed16
Unexecuted instantiation: hash.c:rotlFixed16
Unexecuted instantiation: kdf.c:rotlFixed16
Unexecuted instantiation: random.c:rotlFixed16
Unexecuted instantiation: sha256.c:rotlFixed16
Unexecuted instantiation: rsa.c:rotlFixed16
Unexecuted instantiation: sp_int.c:rotlFixed16
Unexecuted instantiation: aes.c:rotlFixed16
Unexecuted instantiation: sha.c:rotlFixed16
Unexecuted instantiation: sha512.c:rotlFixed16
Unexecuted instantiation: sha3.c:rotlFixed16
Unexecuted instantiation: wolfmath.c:rotlFixed16
Unexecuted instantiation: memory.c:rotlFixed16
Unexecuted instantiation: dh.c:rotlFixed16
Unexecuted instantiation: asn.c:rotlFixed16
Unexecuted instantiation: coding.c:rotlFixed16
Unexecuted instantiation: poly1305.c:rotlFixed16
Unexecuted instantiation: chacha.c:rotlFixed16
Unexecuted instantiation: ecc.c:rotlFixed16
Unexecuted instantiation: wc_mlkem.c:rotlFixed16
Unexecuted instantiation: wc_mlkem_poly.c:rotlFixed16
Unexecuted instantiation: internal.c:rotlFixed16
Unexecuted instantiation: keys.c:rotlFixed16
Unexecuted instantiation: wc_encrypt.c:rotlFixed16
Unexecuted instantiation: pwdbased.c:rotlFixed16
127
128
129
/* This routine performs a right circular arithmetic shift of <x> by <y> value */
130
WC_MISC_STATIC WC_INLINE word16 rotrFixed16(word16 x, word16 y)
131
0
{
132
0
    return (word16)((x >> y) | (x << (sizeof(x) * 8U - y)));
133
0
}
Unexecuted instantiation: ssl.c:rotrFixed16
Unexecuted instantiation: tls.c:rotrFixed16
Unexecuted instantiation: tls13.c:rotrFixed16
Unexecuted instantiation: hmac.c:rotrFixed16
Unexecuted instantiation: hash.c:rotrFixed16
Unexecuted instantiation: kdf.c:rotrFixed16
Unexecuted instantiation: random.c:rotrFixed16
Unexecuted instantiation: sha256.c:rotrFixed16
Unexecuted instantiation: rsa.c:rotrFixed16
Unexecuted instantiation: sp_int.c:rotrFixed16
Unexecuted instantiation: aes.c:rotrFixed16
Unexecuted instantiation: sha.c:rotrFixed16
Unexecuted instantiation: sha512.c:rotrFixed16
Unexecuted instantiation: sha3.c:rotrFixed16
Unexecuted instantiation: wolfmath.c:rotrFixed16
Unexecuted instantiation: memory.c:rotrFixed16
Unexecuted instantiation: dh.c:rotrFixed16
Unexecuted instantiation: asn.c:rotrFixed16
Unexecuted instantiation: coding.c:rotrFixed16
Unexecuted instantiation: poly1305.c:rotrFixed16
Unexecuted instantiation: chacha.c:rotrFixed16
Unexecuted instantiation: ecc.c:rotrFixed16
Unexecuted instantiation: wc_mlkem.c:rotrFixed16
Unexecuted instantiation: wc_mlkem_poly.c:rotrFixed16
Unexecuted instantiation: internal.c:rotrFixed16
Unexecuted instantiation: keys.c:rotrFixed16
Unexecuted instantiation: wc_encrypt.c:rotrFixed16
Unexecuted instantiation: pwdbased.c:rotrFixed16
134
135
/* This routine performs a byte swap of 32-bit word value. */
136
#if defined(__CCRX__) && !defined(NO_INLINE) /* shortest version for CC-RX */
137
    #define ByteReverseWord32(value) _builtin_revl(value)
138
#else
139
WC_MISC_STATIC WC_INLINE word32 ByteReverseWord32(word32 value)
140
0
{
141
#ifdef PPC_INTRINSICS
142
    /* PPC: load reverse indexed instruction */
143
    return (word32)__lwbrx(&value,0);
144
#elif defined(__ICCARM__)
145
    return (word32)__REV(value);
146
#elif defined(KEIL_INTRINSICS)
147
    return (word32)__rev(value);
148
#elif defined(__CCRX__)
149
    return (word32)_builtin_revl(value);
150
#elif defined(WOLF_ALLOW_BUILTIN) && \
151
        defined(__GNUC_PREREQ) && __GNUC_PREREQ(4, 3)
152
    return (word32)__builtin_bswap32(value);
153
#elif defined(WOLFSSL_BYTESWAP32_ASM) && defined(__GNUC__) && \
154
      defined(__aarch64__)
155
    __asm__ volatile (
156
        "REV32 %0, %0  \n"
157
        : "+r" (value)
158
        :
159
    );
160
    return value;
161
#elif defined(WOLFSSL_BYTESWAP32_ASM) && defined(__GNUC__) && \
162
      (defined(__thumb__) || defined(__arm__))
163
    __asm__ volatile (
164
        "REV %0, %0  \n"
165
        : "+r" (value)
166
        :
167
    );
168
    return value;
169
#elif defined(FAST_ROTATE)
170
    /* 5 instructions with rotate instruction, 9 without */
171
0
    return (rotrFixed(value, 8U) & 0xff00ff00) |
172
0
           (rotlFixed(value, 8U) & 0x00ff00ff);
173
#else
174
    /* 6 instructions with rotate instruction, 8 without */
175
    value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8);
176
    return rotlFixed(value, 16U);
177
#endif
178
0
}
Unexecuted instantiation: ssl.c:ByteReverseWord32
Unexecuted instantiation: tls.c:ByteReverseWord32
Unexecuted instantiation: tls13.c:ByteReverseWord32
Unexecuted instantiation: hmac.c:ByteReverseWord32
Unexecuted instantiation: hash.c:ByteReverseWord32
Unexecuted instantiation: kdf.c:ByteReverseWord32
Unexecuted instantiation: random.c:ByteReverseWord32
Unexecuted instantiation: sha256.c:ByteReverseWord32
Unexecuted instantiation: rsa.c:ByteReverseWord32
Unexecuted instantiation: sp_int.c:ByteReverseWord32
Unexecuted instantiation: aes.c:ByteReverseWord32
Unexecuted instantiation: sha.c:ByteReverseWord32
Unexecuted instantiation: sha512.c:ByteReverseWord32
Unexecuted instantiation: sha3.c:ByteReverseWord32
Unexecuted instantiation: wolfmath.c:ByteReverseWord32
Unexecuted instantiation: memory.c:ByteReverseWord32
Unexecuted instantiation: dh.c:ByteReverseWord32
Unexecuted instantiation: asn.c:ByteReverseWord32
Unexecuted instantiation: coding.c:ByteReverseWord32
Unexecuted instantiation: poly1305.c:ByteReverseWord32
Unexecuted instantiation: chacha.c:ByteReverseWord32
Unexecuted instantiation: ecc.c:ByteReverseWord32
Unexecuted instantiation: wc_mlkem.c:ByteReverseWord32
Unexecuted instantiation: wc_mlkem_poly.c:ByteReverseWord32
Unexecuted instantiation: internal.c:ByteReverseWord32
Unexecuted instantiation: keys.c:ByteReverseWord32
Unexecuted instantiation: wc_encrypt.c:ByteReverseWord32
Unexecuted instantiation: pwdbased.c:ByteReverseWord32
179
#endif /* __CCRX__ */
180
/* This routine performs a byte swap of words array of a given count. */
181
WC_MISC_STATIC WC_INLINE void ByteReverseWords(word32* out, const word32* in,
182
                                    word32 byteCount)
183
0
{
184
0
    word32 i;
185
186
0
#ifdef WOLFSSL_USE_ALIGN
187
0
    if ((((size_t)in & 0x3) == 0) &&
188
0
        (((size_t)out & 0x3) == 0))
189
0
#endif
190
0
    {
191
0
        word32 count = byteCount/(word32)sizeof(word32);
192
0
        for (i = 0; i < count; i++)
193
0
            out[i] = ByteReverseWord32(in[i]);
194
0
    }
195
0
#ifdef WOLFSSL_USE_ALIGN
196
0
    else if (((size_t)in & 0x3) == 0) {
197
0
        byte *out_bytes = (byte *)out;
198
0
        word32 scratch;
199
200
0
        byteCount &= ~0x3U;
201
202
0
        for (i = 0; i < byteCount; i += (word32)sizeof(word32)) {
203
0
            scratch = ByteReverseWord32(*in++);
204
0
            XMEMCPY(out_bytes + i, &scratch, sizeof(scratch));
205
0
        }
206
0
    }
207
0
    else if (((size_t)out & 0x3) == 0) {
208
0
        const byte *in_bytes = (const byte *)in;
209
0
        word32 scratch;
210
211
0
        byteCount &= ~0x3U;
212
213
0
        for (i = 0; i < byteCount; i += (word32)sizeof(word32)) {
214
0
            XMEMCPY(&scratch, in_bytes + i, sizeof(scratch));
215
0
            *out++ = ByteReverseWord32(scratch);
216
0
        }
217
0
    }
218
0
    else {
219
0
        const byte *in_bytes = (const byte *)in;
220
0
        byte *out_bytes = (byte *)out;
221
0
        word32 scratch;
222
223
0
        byteCount &= ~0x3U;
224
225
0
        for (i = 0; i < byteCount; i += (word32)sizeof(word32)) {
226
0
            XMEMCPY(&scratch, in_bytes + i, sizeof(scratch));
227
0
            scratch = ByteReverseWord32(scratch);
228
0
            XMEMCPY(out_bytes + i, &scratch, sizeof(scratch));
229
0
        }
230
0
    }
231
0
#endif
232
0
}
Unexecuted instantiation: ssl.c:ByteReverseWords
Unexecuted instantiation: tls.c:ByteReverseWords
Unexecuted instantiation: tls13.c:ByteReverseWords
Unexecuted instantiation: hmac.c:ByteReverseWords
Unexecuted instantiation: hash.c:ByteReverseWords
Unexecuted instantiation: kdf.c:ByteReverseWords
Unexecuted instantiation: random.c:ByteReverseWords
Unexecuted instantiation: sha256.c:ByteReverseWords
Unexecuted instantiation: rsa.c:ByteReverseWords
Unexecuted instantiation: sp_int.c:ByteReverseWords
Unexecuted instantiation: aes.c:ByteReverseWords
Unexecuted instantiation: sha.c:ByteReverseWords
Unexecuted instantiation: sha512.c:ByteReverseWords
Unexecuted instantiation: sha3.c:ByteReverseWords
Unexecuted instantiation: wolfmath.c:ByteReverseWords
Unexecuted instantiation: memory.c:ByteReverseWords
Unexecuted instantiation: dh.c:ByteReverseWords
Unexecuted instantiation: asn.c:ByteReverseWords
Unexecuted instantiation: coding.c:ByteReverseWords
Unexecuted instantiation: poly1305.c:ByteReverseWords
Unexecuted instantiation: chacha.c:ByteReverseWords
Unexecuted instantiation: ecc.c:ByteReverseWords
Unexecuted instantiation: wc_mlkem.c:ByteReverseWords
Unexecuted instantiation: wc_mlkem_poly.c:ByteReverseWords
Unexecuted instantiation: internal.c:ByteReverseWords
Unexecuted instantiation: keys.c:ByteReverseWords
Unexecuted instantiation: wc_encrypt.c:ByteReverseWords
Unexecuted instantiation: pwdbased.c:ByteReverseWords
233
234
#if ((defined(WOLFSSL_AARCH64_BUILD) || defined(__aarch64__)) && \
235
     defined(__APPLE__)) || \
236
    defined(WOLFSSL_X86_64_BUILD) || defined(WOLFSSL_X86_BUILD)
237
    #ifndef WOLFSSL_RW_UNALIGNED_16
238
        #define WOLFSSL_RW_UNALIGNED_16
239
    #endif
240
    #ifndef WOLFSSL_RW_UNALIGNED_32
241
        #define WOLFSSL_RW_UNALIGNED_32
242
    #endif
243
#endif
244
#ifdef WOLFSSL_RW_UNALIGNED_16
245
typedef word16 MAYBE_UNALIGNED uword16;
246
#endif
247
#ifdef WOLFSSL_RW_UNALIGNED_32
248
typedef word32 MAYBE_UNALIGNED uword32;
249
#endif
250
251
WC_MISC_STATIC WC_INLINE word16 readUnalignedWord16(const byte *in)
252
0
{
253
0
#ifndef WOLFSSL_RW_UNALIGNED_16
254
0
    if (((wc_ptr_t)in & (wc_ptr_t)(sizeof(word16) - 1U)) == (wc_ptr_t)0) {
255
0
        return *(const word16 *)in;
256
0
    }
257
0
    else {
258
0
        word16 out = 0;
259
0
        XMEMCPY(&out, in, sizeof(out));
260
0
        return out;
261
0
    }
262
0
#else
263
0
    return *(const uword16 *)in;
264
0
#endif
265
0
}
Unexecuted instantiation: ssl.c:readUnalignedWord16
Unexecuted instantiation: tls.c:readUnalignedWord16
Unexecuted instantiation: tls13.c:readUnalignedWord16
Unexecuted instantiation: hmac.c:readUnalignedWord16
Unexecuted instantiation: hash.c:readUnalignedWord16
Unexecuted instantiation: kdf.c:readUnalignedWord16
Unexecuted instantiation: random.c:readUnalignedWord16
Unexecuted instantiation: sha256.c:readUnalignedWord16
Unexecuted instantiation: rsa.c:readUnalignedWord16
Unexecuted instantiation: sp_int.c:readUnalignedWord16
Unexecuted instantiation: aes.c:readUnalignedWord16
Unexecuted instantiation: sha.c:readUnalignedWord16
Unexecuted instantiation: sha512.c:readUnalignedWord16
Unexecuted instantiation: sha3.c:readUnalignedWord16
Unexecuted instantiation: wolfmath.c:readUnalignedWord16
Unexecuted instantiation: memory.c:readUnalignedWord16
Unexecuted instantiation: dh.c:readUnalignedWord16
Unexecuted instantiation: asn.c:readUnalignedWord16
Unexecuted instantiation: coding.c:readUnalignedWord16
Unexecuted instantiation: poly1305.c:readUnalignedWord16
Unexecuted instantiation: chacha.c:readUnalignedWord16
Unexecuted instantiation: ecc.c:readUnalignedWord16
Unexecuted instantiation: wc_mlkem.c:readUnalignedWord16
Unexecuted instantiation: wc_mlkem_poly.c:readUnalignedWord16
Unexecuted instantiation: internal.c:readUnalignedWord16
Unexecuted instantiation: keys.c:readUnalignedWord16
Unexecuted instantiation: wc_encrypt.c:readUnalignedWord16
Unexecuted instantiation: pwdbased.c:readUnalignedWord16
266
267
WC_MISC_STATIC WC_INLINE word16 writeUnalignedWord16(void *out, word16 in)
268
0
{
269
0
#ifndef WOLFSSL_RW_UNALIGNED_16
270
0
    if (((wc_ptr_t)out & (wc_ptr_t)(sizeof(word16) - 1U)) == (wc_ptr_t)0) {
271
0
        *(word16 *)out = in;
272
0
    }
273
0
    else {
274
0
        XMEMCPY(out, &in, sizeof(in));
275
0
    }
276
0
#else
277
0
    *(uword16 *)out = in;
278
0
#endif
279
0
    return in;
280
0
}
Unexecuted instantiation: ssl.c:writeUnalignedWord16
Unexecuted instantiation: tls.c:writeUnalignedWord16
Unexecuted instantiation: tls13.c:writeUnalignedWord16
Unexecuted instantiation: hmac.c:writeUnalignedWord16
Unexecuted instantiation: hash.c:writeUnalignedWord16
Unexecuted instantiation: kdf.c:writeUnalignedWord16
Unexecuted instantiation: random.c:writeUnalignedWord16
Unexecuted instantiation: sha256.c:writeUnalignedWord16
Unexecuted instantiation: rsa.c:writeUnalignedWord16
Unexecuted instantiation: sp_int.c:writeUnalignedWord16
Unexecuted instantiation: aes.c:writeUnalignedWord16
Unexecuted instantiation: sha.c:writeUnalignedWord16
Unexecuted instantiation: sha512.c:writeUnalignedWord16
Unexecuted instantiation: sha3.c:writeUnalignedWord16
Unexecuted instantiation: wolfmath.c:writeUnalignedWord16
Unexecuted instantiation: memory.c:writeUnalignedWord16
Unexecuted instantiation: dh.c:writeUnalignedWord16
Unexecuted instantiation: asn.c:writeUnalignedWord16
Unexecuted instantiation: coding.c:writeUnalignedWord16
Unexecuted instantiation: poly1305.c:writeUnalignedWord16
Unexecuted instantiation: chacha.c:writeUnalignedWord16
Unexecuted instantiation: ecc.c:writeUnalignedWord16
Unexecuted instantiation: wc_mlkem.c:writeUnalignedWord16
Unexecuted instantiation: wc_mlkem_poly.c:writeUnalignedWord16
Unexecuted instantiation: internal.c:writeUnalignedWord16
Unexecuted instantiation: keys.c:writeUnalignedWord16
Unexecuted instantiation: wc_encrypt.c:writeUnalignedWord16
Unexecuted instantiation: pwdbased.c:writeUnalignedWord16
281
282
WC_MISC_STATIC WC_INLINE word32 readUnalignedWord32(const byte *in)
283
0
{
284
#ifndef WOLFSSL_RW_UNALIGNED_32
285
    if (((wc_ptr_t)in & (wc_ptr_t)(sizeof(word32) - 1U)) == (wc_ptr_t)0) {
286
        return *(const word32 *)in;
287
    }
288
    else {
289
        word32 out = 0; /* else CONFIG_FORTIFY_SOURCE -Wmaybe-uninitialized */
290
        XMEMCPY(&out, in, sizeof(out));
291
        return out;
292
    }
293
#else
294
0
    return *(const uword32 *)in;
295
0
#endif
296
0
}
Unexecuted instantiation: ssl.c:readUnalignedWord32
Unexecuted instantiation: tls.c:readUnalignedWord32
Unexecuted instantiation: tls13.c:readUnalignedWord32
Unexecuted instantiation: hmac.c:readUnalignedWord32
Unexecuted instantiation: hash.c:readUnalignedWord32
Unexecuted instantiation: kdf.c:readUnalignedWord32
Unexecuted instantiation: random.c:readUnalignedWord32
Unexecuted instantiation: sha256.c:readUnalignedWord32
Unexecuted instantiation: rsa.c:readUnalignedWord32
Unexecuted instantiation: sp_int.c:readUnalignedWord32
Unexecuted instantiation: aes.c:readUnalignedWord32
Unexecuted instantiation: sha.c:readUnalignedWord32
Unexecuted instantiation: sha512.c:readUnalignedWord32
Unexecuted instantiation: sha3.c:readUnalignedWord32
Unexecuted instantiation: wolfmath.c:readUnalignedWord32
Unexecuted instantiation: memory.c:readUnalignedWord32
Unexecuted instantiation: dh.c:readUnalignedWord32
Unexecuted instantiation: asn.c:readUnalignedWord32
Unexecuted instantiation: coding.c:readUnalignedWord32
Unexecuted instantiation: poly1305.c:readUnalignedWord32
Unexecuted instantiation: chacha.c:readUnalignedWord32
Unexecuted instantiation: ecc.c:readUnalignedWord32
Unexecuted instantiation: wc_mlkem.c:readUnalignedWord32
Unexecuted instantiation: wc_mlkem_poly.c:readUnalignedWord32
Unexecuted instantiation: internal.c:readUnalignedWord32
Unexecuted instantiation: keys.c:readUnalignedWord32
Unexecuted instantiation: wc_encrypt.c:readUnalignedWord32
Unexecuted instantiation: pwdbased.c:readUnalignedWord32
297
298
WC_MISC_STATIC WC_INLINE word32 writeUnalignedWord32(void *out, word32 in)
299
0
{
300
0
#ifndef WOLFSSL_RW_UNALIGNED_32
301
0
    if (((wc_ptr_t)out & (wc_ptr_t)(sizeof(word32) - 1U)) == (wc_ptr_t)0) {
302
0
        *(word32 *)out = in;
303
0
    }
304
0
    else {
305
0
        XMEMCPY(out, &in, sizeof(in));
306
0
    }
307
0
#else
308
0
    *(uword32 *)out = in;
309
0
#endif
310
0
    return in;
311
0
}
Unexecuted instantiation: ssl.c:writeUnalignedWord32
Unexecuted instantiation: tls.c:writeUnalignedWord32
Unexecuted instantiation: tls13.c:writeUnalignedWord32
Unexecuted instantiation: hmac.c:writeUnalignedWord32
Unexecuted instantiation: hash.c:writeUnalignedWord32
Unexecuted instantiation: kdf.c:writeUnalignedWord32
Unexecuted instantiation: random.c:writeUnalignedWord32
Unexecuted instantiation: sha256.c:writeUnalignedWord32
Unexecuted instantiation: rsa.c:writeUnalignedWord32
Unexecuted instantiation: sp_int.c:writeUnalignedWord32
Unexecuted instantiation: aes.c:writeUnalignedWord32
Unexecuted instantiation: sha.c:writeUnalignedWord32
Unexecuted instantiation: sha512.c:writeUnalignedWord32
Unexecuted instantiation: sha3.c:writeUnalignedWord32
Unexecuted instantiation: wolfmath.c:writeUnalignedWord32
Unexecuted instantiation: memory.c:writeUnalignedWord32
Unexecuted instantiation: dh.c:writeUnalignedWord32
Unexecuted instantiation: asn.c:writeUnalignedWord32
Unexecuted instantiation: coding.c:writeUnalignedWord32
Unexecuted instantiation: poly1305.c:writeUnalignedWord32
Unexecuted instantiation: chacha.c:writeUnalignedWord32
Unexecuted instantiation: ecc.c:writeUnalignedWord32
Unexecuted instantiation: wc_mlkem.c:writeUnalignedWord32
Unexecuted instantiation: wc_mlkem_poly.c:writeUnalignedWord32
Unexecuted instantiation: internal.c:writeUnalignedWord32
Unexecuted instantiation: keys.c:writeUnalignedWord32
Unexecuted instantiation: wc_encrypt.c:writeUnalignedWord32
Unexecuted instantiation: pwdbased.c:writeUnalignedWord32
312
313
WC_MISC_STATIC WC_INLINE void readUnalignedWords32(word32 *out, const byte *in,
314
                                                   size_t count)
315
0
{
316
0
#ifndef WOLFSSL_RW_UNALIGNED_32
317
0
    if (((wc_ptr_t)in & (wc_ptr_t)(sizeof(word32) - 1U)) == (wc_ptr_t)0) {
318
0
        const word32 *in_word32 = (const word32 *)in;
319
0
        while (count-- > 0)
320
0
            *out++ = *in_word32++;
321
0
    }
322
0
    else {
323
0
        XMEMCPY(out, in, count * sizeof(*out));
324
0
    }
325
0
#else
326
0
    const uword32 *in_word32 = (const uword32 *)in;
327
0
    while (count-- > 0)
328
0
        *out++ = *in_word32++;
329
0
#endif
330
0
}
Unexecuted instantiation: ssl.c:readUnalignedWords32
Unexecuted instantiation: tls.c:readUnalignedWords32
Unexecuted instantiation: tls13.c:readUnalignedWords32
Unexecuted instantiation: hmac.c:readUnalignedWords32
Unexecuted instantiation: hash.c:readUnalignedWords32
Unexecuted instantiation: kdf.c:readUnalignedWords32
Unexecuted instantiation: random.c:readUnalignedWords32
Unexecuted instantiation: sha256.c:readUnalignedWords32
Unexecuted instantiation: rsa.c:readUnalignedWords32
Unexecuted instantiation: sp_int.c:readUnalignedWords32
Unexecuted instantiation: aes.c:readUnalignedWords32
Unexecuted instantiation: sha.c:readUnalignedWords32
Unexecuted instantiation: sha512.c:readUnalignedWords32
Unexecuted instantiation: sha3.c:readUnalignedWords32
Unexecuted instantiation: wolfmath.c:readUnalignedWords32
Unexecuted instantiation: memory.c:readUnalignedWords32
Unexecuted instantiation: dh.c:readUnalignedWords32
Unexecuted instantiation: asn.c:readUnalignedWords32
Unexecuted instantiation: coding.c:readUnalignedWords32
Unexecuted instantiation: poly1305.c:readUnalignedWords32
Unexecuted instantiation: chacha.c:readUnalignedWords32
Unexecuted instantiation: ecc.c:readUnalignedWords32
Unexecuted instantiation: wc_mlkem.c:readUnalignedWords32
Unexecuted instantiation: wc_mlkem_poly.c:readUnalignedWords32
Unexecuted instantiation: internal.c:readUnalignedWords32
Unexecuted instantiation: keys.c:readUnalignedWords32
Unexecuted instantiation: wc_encrypt.c:readUnalignedWords32
Unexecuted instantiation: pwdbased.c:readUnalignedWords32
331
332
WC_MISC_STATIC WC_INLINE void writeUnalignedWords32(byte *out, const word32 *in,
333
                                                    size_t count)
334
0
{
335
0
#ifndef WOLFSSL_RW_UNALIGNED_32
336
0
    if (((wc_ptr_t)out & (wc_ptr_t)(sizeof(word32) - 1U)) == (wc_ptr_t)0) {
337
0
        word32 *out_word32 = (word32 *)out;
338
0
        while (count-- > 0)
339
0
            *out_word32++ = *in++;
340
0
    }
341
0
    else {
342
0
        XMEMCPY(out, in, count * sizeof(*in));
343
0
    }
344
0
#else
345
0
    uword32 *out_word32 = (uword32 *)out;
346
0
    while (count-- > 0)
347
0
        *out_word32++ = *in++;
348
0
#endif
349
0
}
Unexecuted instantiation: ssl.c:writeUnalignedWords32
Unexecuted instantiation: tls.c:writeUnalignedWords32
Unexecuted instantiation: tls13.c:writeUnalignedWords32
Unexecuted instantiation: hmac.c:writeUnalignedWords32
Unexecuted instantiation: hash.c:writeUnalignedWords32
Unexecuted instantiation: kdf.c:writeUnalignedWords32
Unexecuted instantiation: random.c:writeUnalignedWords32
Unexecuted instantiation: sha256.c:writeUnalignedWords32
Unexecuted instantiation: rsa.c:writeUnalignedWords32
Unexecuted instantiation: sp_int.c:writeUnalignedWords32
Unexecuted instantiation: aes.c:writeUnalignedWords32
Unexecuted instantiation: sha.c:writeUnalignedWords32
Unexecuted instantiation: sha512.c:writeUnalignedWords32
Unexecuted instantiation: sha3.c:writeUnalignedWords32
Unexecuted instantiation: wolfmath.c:writeUnalignedWords32
Unexecuted instantiation: memory.c:writeUnalignedWords32
Unexecuted instantiation: dh.c:writeUnalignedWords32
Unexecuted instantiation: asn.c:writeUnalignedWords32
Unexecuted instantiation: coding.c:writeUnalignedWords32
Unexecuted instantiation: poly1305.c:writeUnalignedWords32
Unexecuted instantiation: chacha.c:writeUnalignedWords32
Unexecuted instantiation: ecc.c:writeUnalignedWords32
Unexecuted instantiation: wc_mlkem.c:writeUnalignedWords32
Unexecuted instantiation: wc_mlkem_poly.c:writeUnalignedWords32
Unexecuted instantiation: internal.c:writeUnalignedWords32
Unexecuted instantiation: keys.c:writeUnalignedWords32
Unexecuted instantiation: wc_encrypt.c:writeUnalignedWords32
Unexecuted instantiation: pwdbased.c:writeUnalignedWords32
350
351
#if defined(WORD64_AVAILABLE) && !defined(WOLFSSL_NO_WORD64_OPS)
352
353
#if ((defined(WOLFSSL_AARCH64_BUILD) || defined(__aarch64__)) && \
354
     defined(__APPLE__)) || \
355
    defined(WOLFSSL_X86_64_BUILD) || defined(WOLFSSL_X86_BUILD)
356
    #ifndef WOLFSSL_RW_UNALIGNED_64
357
        #define WOLFSSL_RW_UNALIGNED_64
358
    #endif
359
#endif
360
#ifdef WOLFSSL_RW_UNALIGNED_64
361
typedef word64 MAYBE_UNALIGNED uword64;
362
#endif
363
364
WC_MISC_STATIC WC_INLINE word64 readUnalignedWord64(const byte *in)
365
0
{
366
#ifndef WOLFSSL_RW_UNALIGNED_64
367
    if (((wc_ptr_t)in & (wc_ptr_t)(sizeof(word64) - 1U)) == (wc_ptr_t)0) {
368
        return *(const word64 *)in;
369
    }
370
    else {
371
        word64 out = 0; /* else CONFIG_FORTIFY_SOURCE -Wmaybe-uninitialized */
372
        XMEMCPY(&out, in, sizeof(out));
373
        return out;
374
    }
375
#else
376
0
    return *(const uword64 *)in;
377
0
#endif
378
0
}
Unexecuted instantiation: ssl.c:readUnalignedWord64
Unexecuted instantiation: tls.c:readUnalignedWord64
Unexecuted instantiation: tls13.c:readUnalignedWord64
Unexecuted instantiation: hmac.c:readUnalignedWord64
Unexecuted instantiation: hash.c:readUnalignedWord64
Unexecuted instantiation: kdf.c:readUnalignedWord64
Unexecuted instantiation: random.c:readUnalignedWord64
Unexecuted instantiation: sha256.c:readUnalignedWord64
Unexecuted instantiation: rsa.c:readUnalignedWord64
Unexecuted instantiation: sp_int.c:readUnalignedWord64
Unexecuted instantiation: aes.c:readUnalignedWord64
Unexecuted instantiation: sha.c:readUnalignedWord64
Unexecuted instantiation: sha512.c:readUnalignedWord64
Unexecuted instantiation: sha3.c:readUnalignedWord64
Unexecuted instantiation: wolfmath.c:readUnalignedWord64
Unexecuted instantiation: memory.c:readUnalignedWord64
Unexecuted instantiation: dh.c:readUnalignedWord64
Unexecuted instantiation: asn.c:readUnalignedWord64
Unexecuted instantiation: coding.c:readUnalignedWord64
Unexecuted instantiation: poly1305.c:readUnalignedWord64
Unexecuted instantiation: chacha.c:readUnalignedWord64
Unexecuted instantiation: ecc.c:readUnalignedWord64
Unexecuted instantiation: wc_mlkem.c:readUnalignedWord64
Unexecuted instantiation: wc_mlkem_poly.c:readUnalignedWord64
Unexecuted instantiation: internal.c:readUnalignedWord64
Unexecuted instantiation: keys.c:readUnalignedWord64
Unexecuted instantiation: wc_encrypt.c:readUnalignedWord64
Unexecuted instantiation: pwdbased.c:readUnalignedWord64
379
380
WC_MISC_STATIC WC_INLINE word64 writeUnalignedWord64(void *out, word64 in)
381
0
{
382
0
#ifndef WOLFSSL_RW_UNALIGNED_64
383
0
    if (((wc_ptr_t)out & (wc_ptr_t)(sizeof(word64) - 1U)) == (wc_ptr_t)0) {
384
0
        *(word64 *)out = in;
385
0
    }
386
0
    else {
387
0
        XMEMCPY(out, &in, sizeof(in));
388
0
    }
389
0
#else
390
0
    *(uword64 *)out = in;
391
0
#endif
392
0
    return in;
393
0
}
Unexecuted instantiation: ssl.c:writeUnalignedWord64
Unexecuted instantiation: tls.c:writeUnalignedWord64
Unexecuted instantiation: tls13.c:writeUnalignedWord64
Unexecuted instantiation: hmac.c:writeUnalignedWord64
Unexecuted instantiation: hash.c:writeUnalignedWord64
Unexecuted instantiation: kdf.c:writeUnalignedWord64
Unexecuted instantiation: random.c:writeUnalignedWord64
Unexecuted instantiation: sha256.c:writeUnalignedWord64
Unexecuted instantiation: rsa.c:writeUnalignedWord64
Unexecuted instantiation: sp_int.c:writeUnalignedWord64
Unexecuted instantiation: aes.c:writeUnalignedWord64
Unexecuted instantiation: sha.c:writeUnalignedWord64
Unexecuted instantiation: sha512.c:writeUnalignedWord64
Unexecuted instantiation: sha3.c:writeUnalignedWord64
Unexecuted instantiation: wolfmath.c:writeUnalignedWord64
Unexecuted instantiation: memory.c:writeUnalignedWord64
Unexecuted instantiation: dh.c:writeUnalignedWord64
Unexecuted instantiation: asn.c:writeUnalignedWord64
Unexecuted instantiation: coding.c:writeUnalignedWord64
Unexecuted instantiation: poly1305.c:writeUnalignedWord64
Unexecuted instantiation: chacha.c:writeUnalignedWord64
Unexecuted instantiation: ecc.c:writeUnalignedWord64
Unexecuted instantiation: wc_mlkem.c:writeUnalignedWord64
Unexecuted instantiation: wc_mlkem_poly.c:writeUnalignedWord64
Unexecuted instantiation: internal.c:writeUnalignedWord64
Unexecuted instantiation: keys.c:writeUnalignedWord64
Unexecuted instantiation: wc_encrypt.c:writeUnalignedWord64
Unexecuted instantiation: pwdbased.c:writeUnalignedWord64
394
395
WC_MISC_STATIC WC_INLINE void readUnalignedWords64(word64 *out, const byte *in,
396
                                                   size_t count)
397
0
{
398
0
#ifndef WOLFSSL_RW_UNALIGNED_64
399
0
    if (((wc_ptr_t)in & (wc_ptr_t)(sizeof(word64) - 1U)) == (wc_ptr_t)0) {
400
0
        const word64 *in_word64 = (const word64 *)in;
401
0
        while (count-- > 0)
402
0
            *out++ = *in_word64++;
403
0
    }
404
0
    else {
405
0
        XMEMCPY(out, in, count * sizeof(*out));
406
0
    }
407
0
#else
408
0
    const uword64 *in_word64 = (const uword64 *)in;
409
0
    while (count-- > 0)
410
0
        *out++ = *in_word64++;
411
0
#endif
412
0
}
Unexecuted instantiation: ssl.c:readUnalignedWords64
Unexecuted instantiation: tls.c:readUnalignedWords64
Unexecuted instantiation: tls13.c:readUnalignedWords64
Unexecuted instantiation: hmac.c:readUnalignedWords64
Unexecuted instantiation: hash.c:readUnalignedWords64
Unexecuted instantiation: kdf.c:readUnalignedWords64
Unexecuted instantiation: random.c:readUnalignedWords64
Unexecuted instantiation: sha256.c:readUnalignedWords64
Unexecuted instantiation: rsa.c:readUnalignedWords64
Unexecuted instantiation: sp_int.c:readUnalignedWords64
Unexecuted instantiation: aes.c:readUnalignedWords64
Unexecuted instantiation: sha.c:readUnalignedWords64
Unexecuted instantiation: sha512.c:readUnalignedWords64
Unexecuted instantiation: sha3.c:readUnalignedWords64
Unexecuted instantiation: wolfmath.c:readUnalignedWords64
Unexecuted instantiation: memory.c:readUnalignedWords64
Unexecuted instantiation: dh.c:readUnalignedWords64
Unexecuted instantiation: asn.c:readUnalignedWords64
Unexecuted instantiation: coding.c:readUnalignedWords64
Unexecuted instantiation: poly1305.c:readUnalignedWords64
Unexecuted instantiation: chacha.c:readUnalignedWords64
Unexecuted instantiation: ecc.c:readUnalignedWords64
Unexecuted instantiation: wc_mlkem.c:readUnalignedWords64
Unexecuted instantiation: wc_mlkem_poly.c:readUnalignedWords64
Unexecuted instantiation: internal.c:readUnalignedWords64
Unexecuted instantiation: keys.c:readUnalignedWords64
Unexecuted instantiation: wc_encrypt.c:readUnalignedWords64
Unexecuted instantiation: pwdbased.c:readUnalignedWords64
413
414
WC_MISC_STATIC WC_INLINE void writeUnalignedWords64(byte *out, const word64 *in,
415
                                                    size_t count)
416
0
{
417
0
#ifndef WOLFSSL_RW_UNALIGNED_64
418
0
    if (((wc_ptr_t)out & (wc_ptr_t)(sizeof(word64) - 1U)) == (wc_ptr_t)0) {
419
0
        word64 *out_word64 = (word64 *)out;
420
0
        while (count-- > 0)
421
0
            *out_word64++ = *in++;
422
0
    }
423
0
    else {
424
0
        XMEMCPY(out, in, count * sizeof(*in));
425
0
    }
426
0
#else
427
0
    uword64 *out_word64 = (uword64 *)out;
428
0
    while (count-- > 0)
429
0
        *out_word64++ = *in++;
430
0
#endif
431
0
}
Unexecuted instantiation: ssl.c:writeUnalignedWords64
Unexecuted instantiation: tls.c:writeUnalignedWords64
Unexecuted instantiation: tls13.c:writeUnalignedWords64
Unexecuted instantiation: hmac.c:writeUnalignedWords64
Unexecuted instantiation: hash.c:writeUnalignedWords64
Unexecuted instantiation: kdf.c:writeUnalignedWords64
Unexecuted instantiation: random.c:writeUnalignedWords64
Unexecuted instantiation: sha256.c:writeUnalignedWords64
Unexecuted instantiation: rsa.c:writeUnalignedWords64
Unexecuted instantiation: sp_int.c:writeUnalignedWords64
Unexecuted instantiation: aes.c:writeUnalignedWords64
Unexecuted instantiation: sha.c:writeUnalignedWords64
Unexecuted instantiation: sha512.c:writeUnalignedWords64
Unexecuted instantiation: sha3.c:writeUnalignedWords64
Unexecuted instantiation: wolfmath.c:writeUnalignedWords64
Unexecuted instantiation: memory.c:writeUnalignedWords64
Unexecuted instantiation: dh.c:writeUnalignedWords64
Unexecuted instantiation: asn.c:writeUnalignedWords64
Unexecuted instantiation: coding.c:writeUnalignedWords64
Unexecuted instantiation: poly1305.c:writeUnalignedWords64
Unexecuted instantiation: chacha.c:writeUnalignedWords64
Unexecuted instantiation: ecc.c:writeUnalignedWords64
Unexecuted instantiation: wc_mlkem.c:writeUnalignedWords64
Unexecuted instantiation: wc_mlkem_poly.c:writeUnalignedWords64
Unexecuted instantiation: internal.c:writeUnalignedWords64
Unexecuted instantiation: keys.c:writeUnalignedWords64
Unexecuted instantiation: wc_encrypt.c:writeUnalignedWords64
Unexecuted instantiation: pwdbased.c:writeUnalignedWords64
432
433
WC_MISC_STATIC WC_INLINE word64 rotlFixed64(word64 x, word64 y)
434
0
{
435
0
    return (x << y) | (x >> (sizeof(y) * 8 - y));
436
0
}
Unexecuted instantiation: ssl.c:rotlFixed64
Unexecuted instantiation: tls.c:rotlFixed64
Unexecuted instantiation: tls13.c:rotlFixed64
Unexecuted instantiation: hmac.c:rotlFixed64
Unexecuted instantiation: hash.c:rotlFixed64
Unexecuted instantiation: kdf.c:rotlFixed64
Unexecuted instantiation: random.c:rotlFixed64
Unexecuted instantiation: sha256.c:rotlFixed64
Unexecuted instantiation: rsa.c:rotlFixed64
Unexecuted instantiation: sp_int.c:rotlFixed64
Unexecuted instantiation: aes.c:rotlFixed64
Unexecuted instantiation: sha.c:rotlFixed64
Unexecuted instantiation: sha512.c:rotlFixed64
Unexecuted instantiation: sha3.c:rotlFixed64
Unexecuted instantiation: wolfmath.c:rotlFixed64
Unexecuted instantiation: memory.c:rotlFixed64
Unexecuted instantiation: dh.c:rotlFixed64
Unexecuted instantiation: asn.c:rotlFixed64
Unexecuted instantiation: coding.c:rotlFixed64
Unexecuted instantiation: poly1305.c:rotlFixed64
Unexecuted instantiation: chacha.c:rotlFixed64
Unexecuted instantiation: ecc.c:rotlFixed64
Unexecuted instantiation: wc_mlkem.c:rotlFixed64
Unexecuted instantiation: wc_mlkem_poly.c:rotlFixed64
Unexecuted instantiation: internal.c:rotlFixed64
Unexecuted instantiation: keys.c:rotlFixed64
Unexecuted instantiation: wc_encrypt.c:rotlFixed64
Unexecuted instantiation: pwdbased.c:rotlFixed64
437
438
439
WC_MISC_STATIC WC_INLINE word64 rotrFixed64(word64 x, word64 y)
440
0
{
441
0
    return (x >> y) | (x << (sizeof(y) * 8 - y));
442
0
}
Unexecuted instantiation: ssl.c:rotrFixed64
Unexecuted instantiation: tls.c:rotrFixed64
Unexecuted instantiation: tls13.c:rotrFixed64
Unexecuted instantiation: hmac.c:rotrFixed64
Unexecuted instantiation: hash.c:rotrFixed64
Unexecuted instantiation: kdf.c:rotrFixed64
Unexecuted instantiation: random.c:rotrFixed64
Unexecuted instantiation: sha256.c:rotrFixed64
Unexecuted instantiation: rsa.c:rotrFixed64
Unexecuted instantiation: sp_int.c:rotrFixed64
Unexecuted instantiation: aes.c:rotrFixed64
Unexecuted instantiation: sha.c:rotrFixed64
Unexecuted instantiation: sha512.c:rotrFixed64
Unexecuted instantiation: sha3.c:rotrFixed64
Unexecuted instantiation: wolfmath.c:rotrFixed64
Unexecuted instantiation: memory.c:rotrFixed64
Unexecuted instantiation: dh.c:rotrFixed64
Unexecuted instantiation: asn.c:rotrFixed64
Unexecuted instantiation: coding.c:rotrFixed64
Unexecuted instantiation: poly1305.c:rotrFixed64
Unexecuted instantiation: chacha.c:rotrFixed64
Unexecuted instantiation: ecc.c:rotrFixed64
Unexecuted instantiation: wc_mlkem.c:rotrFixed64
Unexecuted instantiation: wc_mlkem_poly.c:rotrFixed64
Unexecuted instantiation: internal.c:rotrFixed64
Unexecuted instantiation: keys.c:rotrFixed64
Unexecuted instantiation: wc_encrypt.c:rotrFixed64
Unexecuted instantiation: pwdbased.c:rotrFixed64
443
444
445
WC_MISC_STATIC WC_INLINE word64 ByteReverseWord64(word64 value)
446
0
{
447
#if defined(WOLF_ALLOW_BUILTIN) && defined(__GNUC_PREREQ) && __GNUC_PREREQ(4, 3)
448
    return (word64)__builtin_bswap64(value);
449
#elif defined(WOLFCRYPT_SLOW_WORD64)
450
    return (word64)((word64)ByteReverseWord32((word32) value)) << 32 |
451
        (word64)ByteReverseWord32((word32)(value   >> 32));
452
#else
453
0
    value = ((value & W64LIT(0xFF00FF00FF00FF00)) >> 8) |
454
0
        ((value & W64LIT(0x00FF00FF00FF00FF)) << 8);
455
0
    value = ((value & W64LIT(0xFFFF0000FFFF0000)) >> 16) |
456
0
        ((value & W64LIT(0x0000FFFF0000FFFF)) << 16);
457
0
    return rotlFixed64(value, 32U);
458
0
#endif
459
0
}
Unexecuted instantiation: ssl.c:ByteReverseWord64
Unexecuted instantiation: tls.c:ByteReverseWord64
Unexecuted instantiation: tls13.c:ByteReverseWord64
Unexecuted instantiation: hmac.c:ByteReverseWord64
Unexecuted instantiation: hash.c:ByteReverseWord64
Unexecuted instantiation: kdf.c:ByteReverseWord64
Unexecuted instantiation: random.c:ByteReverseWord64
Unexecuted instantiation: sha256.c:ByteReverseWord64
Unexecuted instantiation: rsa.c:ByteReverseWord64
Unexecuted instantiation: sp_int.c:ByteReverseWord64
Unexecuted instantiation: aes.c:ByteReverseWord64
Unexecuted instantiation: sha.c:ByteReverseWord64
Unexecuted instantiation: sha512.c:ByteReverseWord64
Unexecuted instantiation: sha3.c:ByteReverseWord64
Unexecuted instantiation: wolfmath.c:ByteReverseWord64
Unexecuted instantiation: memory.c:ByteReverseWord64
Unexecuted instantiation: dh.c:ByteReverseWord64
Unexecuted instantiation: asn.c:ByteReverseWord64
Unexecuted instantiation: coding.c:ByteReverseWord64
Unexecuted instantiation: poly1305.c:ByteReverseWord64
Unexecuted instantiation: chacha.c:ByteReverseWord64
Unexecuted instantiation: ecc.c:ByteReverseWord64
Unexecuted instantiation: wc_mlkem.c:ByteReverseWord64
Unexecuted instantiation: wc_mlkem_poly.c:ByteReverseWord64
Unexecuted instantiation: internal.c:ByteReverseWord64
Unexecuted instantiation: keys.c:ByteReverseWord64
Unexecuted instantiation: wc_encrypt.c:ByteReverseWord64
Unexecuted instantiation: pwdbased.c:ByteReverseWord64
460
461
462
WC_MISC_STATIC WC_INLINE void ByteReverseWords64(word64* out, const word64* in,
463
                                      word32 byteCount)
464
0
{
465
0
    word32 count = byteCount/(word32)sizeof(word64), i;
466
467
0
#ifdef WOLFSSL_USE_ALIGN
468
0
    if ((((size_t)in & 0x7) == 0) &&
469
0
        (((size_t)out & 0x7) == 0))
470
0
#endif
471
0
    {
472
0
        for (i = 0; i < count; i++)
473
0
            out[i] = ByteReverseWord64(in[i]);
474
0
    }
475
0
#ifdef WOLFSSL_USE_ALIGN
476
0
    else if (((size_t)in & 0x7) == 0) {
477
0
        byte *out_bytes = (byte *)out;
478
0
        word64 scratch;
479
480
0
        byteCount &= ~0x7U;
481
482
0
        for (i = 0; i < byteCount; i += (word32)sizeof(word64)) {
483
0
            scratch = ByteReverseWord64(*in++);
484
0
            XMEMCPY(out_bytes + i, &scratch, sizeof(scratch));
485
0
        }
486
0
    }
487
0
    else if (((size_t)out & 0x7) == 0) {
488
0
        const byte *in_bytes = (const byte *)in;
489
0
        word64 scratch;
490
491
0
        byteCount &= ~0x7U;
492
493
0
        for (i = 0; i < byteCount; i += (word32)sizeof(word64)) {
494
0
            XMEMCPY(&scratch, in_bytes + i, sizeof(scratch));
495
0
            *out++ = ByteReverseWord64(scratch);
496
0
        }
497
0
    }
498
0
    else {
499
0
        const byte *in_bytes = (const byte *)in;
500
0
        byte *out_bytes = (byte *)out;
501
0
        word64 scratch;
502
503
0
        byteCount &= ~0x7U;
504
505
0
        for (i = 0; i < byteCount; i += (word32)sizeof(word64)) {
506
0
            XMEMCPY(&scratch, in_bytes + i, sizeof(scratch));
507
0
            scratch = ByteReverseWord64(scratch);
508
0
            XMEMCPY(out_bytes + i, &scratch, sizeof(scratch));
509
0
        }
510
0
    }
511
0
#endif
512
0
}
Unexecuted instantiation: ssl.c:ByteReverseWords64
Unexecuted instantiation: tls.c:ByteReverseWords64
Unexecuted instantiation: tls13.c:ByteReverseWords64
Unexecuted instantiation: hmac.c:ByteReverseWords64
Unexecuted instantiation: hash.c:ByteReverseWords64
Unexecuted instantiation: kdf.c:ByteReverseWords64
Unexecuted instantiation: random.c:ByteReverseWords64
Unexecuted instantiation: sha256.c:ByteReverseWords64
Unexecuted instantiation: rsa.c:ByteReverseWords64
Unexecuted instantiation: sp_int.c:ByteReverseWords64
Unexecuted instantiation: aes.c:ByteReverseWords64
Unexecuted instantiation: sha.c:ByteReverseWords64
Unexecuted instantiation: sha512.c:ByteReverseWords64
Unexecuted instantiation: sha3.c:ByteReverseWords64
Unexecuted instantiation: wolfmath.c:ByteReverseWords64
Unexecuted instantiation: memory.c:ByteReverseWords64
Unexecuted instantiation: dh.c:ByteReverseWords64
Unexecuted instantiation: asn.c:ByteReverseWords64
Unexecuted instantiation: coding.c:ByteReverseWords64
Unexecuted instantiation: poly1305.c:ByteReverseWords64
Unexecuted instantiation: chacha.c:ByteReverseWords64
Unexecuted instantiation: ecc.c:ByteReverseWords64
Unexecuted instantiation: wc_mlkem.c:ByteReverseWords64
Unexecuted instantiation: wc_mlkem_poly.c:ByteReverseWords64
Unexecuted instantiation: internal.c:ByteReverseWords64
Unexecuted instantiation: keys.c:ByteReverseWords64
Unexecuted instantiation: wc_encrypt.c:ByteReverseWords64
Unexecuted instantiation: pwdbased.c:ByteReverseWords64
513
514
#endif /* WORD64_AVAILABLE && !WOLFSSL_NO_WORD64_OPS */
515
516
#ifndef WOLFSSL_NO_XOR_OPS
517
518
/* Leave no doubt that WOLFSSL_WORD_SIZE is a power of 2. */
519
wc_static_assert((WOLFSSL_WORD_SIZE & (WOLFSSL_WORD_SIZE - 1)) == 0);
520
521
/* This routine performs a bitwise XOR operation of <*a> and <*b> for <n> number
522
of wolfssl_words, placing the result in <*r>. */
523
WC_MISC_STATIC WC_INLINE void XorWordsOut(wolfssl_word** r,
524
                       const wolfssl_word** a, const wolfssl_word** b, word32 n)
525
0
{
526
0
    const wolfssl_word *e = *a + n;
527
528
0
    while (*a < e)
529
0
        *((*r)++) = *((*a)++) ^ *((*b)++);
530
0
}
Unexecuted instantiation: ssl.c:XorWordsOut
Unexecuted instantiation: tls.c:XorWordsOut
Unexecuted instantiation: tls13.c:XorWordsOut
Unexecuted instantiation: hmac.c:XorWordsOut
Unexecuted instantiation: hash.c:XorWordsOut
Unexecuted instantiation: kdf.c:XorWordsOut
Unexecuted instantiation: random.c:XorWordsOut
Unexecuted instantiation: sha256.c:XorWordsOut
Unexecuted instantiation: rsa.c:XorWordsOut
Unexecuted instantiation: sp_int.c:XorWordsOut
Unexecuted instantiation: aes.c:XorWordsOut
Unexecuted instantiation: sha.c:XorWordsOut
Unexecuted instantiation: sha512.c:XorWordsOut
Unexecuted instantiation: sha3.c:XorWordsOut
Unexecuted instantiation: wolfmath.c:XorWordsOut
Unexecuted instantiation: memory.c:XorWordsOut
Unexecuted instantiation: dh.c:XorWordsOut
Unexecuted instantiation: asn.c:XorWordsOut
Unexecuted instantiation: coding.c:XorWordsOut
Unexecuted instantiation: poly1305.c:XorWordsOut
Unexecuted instantiation: chacha.c:XorWordsOut
Unexecuted instantiation: ecc.c:XorWordsOut
Unexecuted instantiation: wc_mlkem.c:XorWordsOut
Unexecuted instantiation: wc_mlkem_poly.c:XorWordsOut
Unexecuted instantiation: internal.c:XorWordsOut
Unexecuted instantiation: keys.c:XorWordsOut
Unexecuted instantiation: wc_encrypt.c:XorWordsOut
Unexecuted instantiation: pwdbased.c:XorWordsOut
531
532
/* This routine performs a bitwise XOR operation of <*buf> and <*mask> of n
533
counts, placing the result in <*out>. */
534
535
WC_MISC_STATIC WC_INLINE void xorbufout(void* out, const void* buf,
536
                                        const void* mask, word32 count)
537
0
{
538
0
    byte*       o = (byte*)out;
539
0
    const byte* b = (const byte*)buf;
540
0
    const byte* m = (const byte*)mask;
541
542
    /* type-punning helpers */
543
0
    union {
544
0
        byte* bp;
545
0
        wolfssl_word* wp;
546
0
    } tpo;
547
0
    union {
548
0
        const byte* bp;
549
0
        const wolfssl_word* wp;
550
0
    } tpb, tpm;
551
552
0
    if (((((wc_ptr_t)o) & (WOLFSSL_WORD_SIZE - 1)) == 0) &&
553
0
        ((((wc_ptr_t)b) & (WOLFSSL_WORD_SIZE - 1)) == 0) &&
554
0
        ((((wc_ptr_t)m) & (WOLFSSL_WORD_SIZE - 1)) == 0))
555
0
    {
556
        /* All buffers are already aligned.  Possible to XOR by words without
557
         * fixup.
558
         */
559
560
0
        tpo.bp = o;
561
0
        tpb.bp = b;
562
0
        tpm.bp = m;
563
0
        XorWordsOut(&tpo.wp, &tpb.wp, &tpm.wp, count >> WOLFSSL_WORD_SIZE_LOG2);
564
0
        o = tpo.bp;
565
0
        b = tpb.bp;
566
0
        m = tpm.bp;
567
0
        count &= (WOLFSSL_WORD_SIZE - 1);
568
0
    }
569
0
    else if ((((wc_ptr_t)o) & (WOLFSSL_WORD_SIZE - 1)) ==
570
0
             (((wc_ptr_t)b) & (WOLFSSL_WORD_SIZE - 1)) &&
571
0
             (((wc_ptr_t)b) & (WOLFSSL_WORD_SIZE - 1)) ==
572
0
             (((wc_ptr_t)m) & (WOLFSSL_WORD_SIZE - 1)))
573
0
    {
574
        /* Alignment can be fixed up to allow XOR by words. */
575
576
        /* Perform bytewise xor until pointers are aligned to
577
         * WOLFSSL_WORD_SIZE.
578
         */
579
0
        while ((((wc_ptr_t)b & (WOLFSSL_WORD_SIZE - 1)) != 0) && (count > 0))
580
0
        {
581
0
            *o++ = (byte)(*b++ ^ *m++);
582
0
            count--;
583
0
        }
584
585
0
        tpo.bp = o;
586
0
        tpb.bp = b;
587
0
        tpm.bp = m;
588
0
        XorWordsOut(&tpo.wp, &tpb.wp, &tpm.wp, count >> WOLFSSL_WORD_SIZE_LOG2);
589
0
        o = tpo.bp;
590
0
        b = tpb.bp;
591
0
        m = tpm.bp;
592
0
        count &= (WOLFSSL_WORD_SIZE - 1);
593
0
    }
594
595
0
    while (count > 0) {
596
0
        *o++ = (byte)(*b++ ^ *m++);
597
0
        count--;
598
0
    }
599
600
0
}
Unexecuted instantiation: ssl.c:xorbufout
Unexecuted instantiation: tls.c:xorbufout
Unexecuted instantiation: tls13.c:xorbufout
Unexecuted instantiation: hmac.c:xorbufout
Unexecuted instantiation: hash.c:xorbufout
Unexecuted instantiation: kdf.c:xorbufout
Unexecuted instantiation: random.c:xorbufout
Unexecuted instantiation: sha256.c:xorbufout
Unexecuted instantiation: rsa.c:xorbufout
Unexecuted instantiation: sp_int.c:xorbufout
Unexecuted instantiation: aes.c:xorbufout
Unexecuted instantiation: sha.c:xorbufout
Unexecuted instantiation: sha512.c:xorbufout
Unexecuted instantiation: sha3.c:xorbufout
Unexecuted instantiation: wolfmath.c:xorbufout
Unexecuted instantiation: memory.c:xorbufout
Unexecuted instantiation: dh.c:xorbufout
Unexecuted instantiation: asn.c:xorbufout
Unexecuted instantiation: coding.c:xorbufout
Unexecuted instantiation: poly1305.c:xorbufout
Unexecuted instantiation: chacha.c:xorbufout
Unexecuted instantiation: ecc.c:xorbufout
Unexecuted instantiation: wc_mlkem.c:xorbufout
Unexecuted instantiation: wc_mlkem_poly.c:xorbufout
Unexecuted instantiation: internal.c:xorbufout
Unexecuted instantiation: keys.c:xorbufout
Unexecuted instantiation: wc_encrypt.c:xorbufout
Unexecuted instantiation: pwdbased.c:xorbufout
601
602
/* This routine performs a bitwise XOR operation of <*r> and <*a> for <n> number
603
of wolfssl_words, placing the result in <*r>. */
604
WC_MISC_STATIC WC_INLINE void XorWords(wolfssl_word** r, const wolfssl_word** a,
605
                                       word32 n)
606
0
{
607
0
    const wolfssl_word *e = *a + n;
608
609
0
    while (*a < e)
610
0
        *((*r)++) ^= *((*a)++);
611
0
}
Unexecuted instantiation: ssl.c:XorWords
Unexecuted instantiation: tls.c:XorWords
Unexecuted instantiation: tls13.c:XorWords
Unexecuted instantiation: hmac.c:XorWords
Unexecuted instantiation: hash.c:XorWords
Unexecuted instantiation: kdf.c:XorWords
Unexecuted instantiation: random.c:XorWords
Unexecuted instantiation: sha256.c:XorWords
Unexecuted instantiation: rsa.c:XorWords
Unexecuted instantiation: sp_int.c:XorWords
Unexecuted instantiation: aes.c:XorWords
Unexecuted instantiation: sha.c:XorWords
Unexecuted instantiation: sha512.c:XorWords
Unexecuted instantiation: sha3.c:XorWords
Unexecuted instantiation: wolfmath.c:XorWords
Unexecuted instantiation: memory.c:XorWords
Unexecuted instantiation: dh.c:XorWords
Unexecuted instantiation: asn.c:XorWords
Unexecuted instantiation: coding.c:XorWords
Unexecuted instantiation: poly1305.c:XorWords
Unexecuted instantiation: chacha.c:XorWords
Unexecuted instantiation: ecc.c:XorWords
Unexecuted instantiation: wc_mlkem.c:XorWords
Unexecuted instantiation: wc_mlkem_poly.c:XorWords
Unexecuted instantiation: internal.c:XorWords
Unexecuted instantiation: keys.c:XorWords
Unexecuted instantiation: wc_encrypt.c:XorWords
Unexecuted instantiation: pwdbased.c:XorWords
612
613
/* This routine performs a bitwise XOR operation of <*buf> and <*mask> of n
614
counts, placing the result in <*buf>. */
615
616
WC_MISC_STATIC WC_INLINE void xorbuf(void* buf, const void* mask, word32 count)
617
0
{
618
0
    byte*       b = (byte*)buf;
619
0
    const byte* m = (const byte*)mask;
620
621
    /* type-punning helpers */
622
0
    union {
623
0
        byte* bp;
624
0
        wolfssl_word* wp;
625
0
    } tpb;
626
0
    union {
627
0
        const byte* bp;
628
0
        const wolfssl_word* wp;
629
0
    } tpm;
630
631
0
    if ((((wc_ptr_t)buf & (WOLFSSL_WORD_SIZE - 1)) == 0) &&
632
0
        (((wc_ptr_t)mask & (WOLFSSL_WORD_SIZE - 1)) == 0))
633
0
    {
634
        /* Both buffers are already aligned.  Possible to XOR by words without
635
         * fixup.
636
         */
637
638
0
        tpb.bp = b;
639
0
        tpm.bp = m;
640
        /* Work around false positives from linuxkm CONFIG_FORTIFY_SOURCE. */
641
        #if defined(WOLFSSL_LINUXKM) && defined(CONFIG_FORTIFY_SOURCE)
642
            PRAGMA_GCC_DIAG_PUSH;
643
            PRAGMA_GCC("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
644
        #endif
645
0
        XorWords(&tpb.wp, &tpm.wp, count >> WOLFSSL_WORD_SIZE_LOG2);
646
        #if defined(WOLFSSL_LINUXKM) && defined(CONFIG_FORTIFY_SOURCE)
647
            PRAGMA_GCC_DIAG_POP;
648
        #endif
649
0
        b = tpb.bp;
650
0
        m = tpm.bp;
651
0
        count &= (WOLFSSL_WORD_SIZE - 1);
652
0
    }
653
0
    else if (((wc_ptr_t)buf & (WOLFSSL_WORD_SIZE - 1)) ==
654
0
             ((wc_ptr_t)mask & (WOLFSSL_WORD_SIZE - 1)))
655
0
    {
656
        /* Alignment can be fixed up to allow XOR by words. */
657
658
        /* Perform bytewise xor until pointers are aligned to
659
         * WOLFSSL_WORD_SIZE.
660
         */
661
0
        while ((((wc_ptr_t)b & (WOLFSSL_WORD_SIZE - 1)) != 0) && (count > 0))
662
0
        {
663
0
            *(b++) ^= *(m++);
664
0
            count--;
665
0
        }
666
667
0
        tpb.bp = b;
668
0
        tpm.bp = m;
669
        /* Work around false positives from linuxkm CONFIG_FORTIFY_SOURCE. */
670
        #if defined(WOLFSSL_LINUXKM) && defined(CONFIG_FORTIFY_SOURCE)
671
            PRAGMA_GCC_DIAG_PUSH;
672
            PRAGMA_GCC("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
673
        #endif
674
0
        XorWords(&tpb.wp, &tpm.wp, count >> WOLFSSL_WORD_SIZE_LOG2);
675
        #if defined(WOLFSSL_LINUXKM) && defined(CONFIG_FORTIFY_SOURCE)
676
            PRAGMA_GCC_DIAG_POP;
677
        #endif
678
0
        b = tpb.bp;
679
0
        m = tpm.bp;
680
0
        count &= (WOLFSSL_WORD_SIZE - 1);
681
0
    }
682
683
0
    while (count > 0) {
684
0
        *b++ ^= *m++;
685
0
        count--;
686
0
    }
687
0
}
Unexecuted instantiation: ssl.c:xorbuf
Unexecuted instantiation: tls.c:xorbuf
Unexecuted instantiation: tls13.c:xorbuf
Unexecuted instantiation: hmac.c:xorbuf
Unexecuted instantiation: hash.c:xorbuf
Unexecuted instantiation: kdf.c:xorbuf
Unexecuted instantiation: random.c:xorbuf
Unexecuted instantiation: sha256.c:xorbuf
Unexecuted instantiation: rsa.c:xorbuf
Unexecuted instantiation: sp_int.c:xorbuf
Unexecuted instantiation: aes.c:xorbuf
Unexecuted instantiation: sha.c:xorbuf
Unexecuted instantiation: sha512.c:xorbuf
Unexecuted instantiation: sha3.c:xorbuf
Unexecuted instantiation: wolfmath.c:xorbuf
Unexecuted instantiation: memory.c:xorbuf
Unexecuted instantiation: dh.c:xorbuf
Unexecuted instantiation: asn.c:xorbuf
Unexecuted instantiation: coding.c:xorbuf
Unexecuted instantiation: poly1305.c:xorbuf
Unexecuted instantiation: chacha.c:xorbuf
Unexecuted instantiation: ecc.c:xorbuf
Unexecuted instantiation: wc_mlkem.c:xorbuf
Unexecuted instantiation: wc_mlkem_poly.c:xorbuf
Unexecuted instantiation: internal.c:xorbuf
Unexecuted instantiation: keys.c:xorbuf
Unexecuted instantiation: wc_encrypt.c:xorbuf
Unexecuted instantiation: pwdbased.c:xorbuf
688
689
#endif /* !WOLFSSL_NO_XOR_OPS */
690
691
#ifndef WOLFSSL_NO_FORCE_ZERO
692
/* This routine fills the first len bytes of the memory area pointed by mem
693
   with zeros. It ensures compiler optimization doesn't skip it. */
694
WC_MISC_STATIC WC_INLINE void ForceZero(void* mem, size_t len)
695
0
{
696
0
    byte *zb = (byte *)mem;
697
0
    unsigned long *zl;
698
699
0
    XFENCE();
700
701
0
    while ((wc_ptr_t)zb & (wc_ptr_t)(sizeof(unsigned long) - 1U)) {
702
0
        if (len == 0)
703
0
            return;
704
0
        *zb++ = 0;
705
0
        --len;
706
0
    }
707
708
0
    zl = (unsigned long *)zb;
709
710
0
    while (len >= sizeof(unsigned long)) {
711
0
        *zl++ = 0;
712
0
        len -= sizeof(unsigned long);
713
0
    }
714
715
0
    zb = (byte *)zl;
716
717
0
    while (len) {
718
0
        *zb++ = 0;
719
0
        --len;
720
0
    }
721
722
0
    XFENCE();
723
0
}
Unexecuted instantiation: ssl.c:ForceZero
Unexecuted instantiation: tls.c:ForceZero
Unexecuted instantiation: tls13.c:ForceZero
Unexecuted instantiation: hmac.c:ForceZero
Unexecuted instantiation: hash.c:ForceZero
Unexecuted instantiation: kdf.c:ForceZero
Unexecuted instantiation: random.c:ForceZero
Unexecuted instantiation: sha256.c:ForceZero
Unexecuted instantiation: rsa.c:ForceZero
Unexecuted instantiation: sp_int.c:ForceZero
Unexecuted instantiation: aes.c:ForceZero
Unexecuted instantiation: sha.c:ForceZero
Unexecuted instantiation: sha512.c:ForceZero
Unexecuted instantiation: sha3.c:ForceZero
Unexecuted instantiation: wolfmath.c:ForceZero
Unexecuted instantiation: memory.c:ForceZero
Unexecuted instantiation: dh.c:ForceZero
Unexecuted instantiation: asn.c:ForceZero
Unexecuted instantiation: coding.c:ForceZero
Unexecuted instantiation: poly1305.c:ForceZero
Unexecuted instantiation: chacha.c:ForceZero
Unexecuted instantiation: ecc.c:ForceZero
Unexecuted instantiation: wc_mlkem.c:ForceZero
Unexecuted instantiation: wc_mlkem_poly.c:ForceZero
Unexecuted instantiation: internal.c:ForceZero
Unexecuted instantiation: keys.c:ForceZero
Unexecuted instantiation: wc_encrypt.c:ForceZero
Unexecuted instantiation: pwdbased.c:ForceZero
724
#endif
725
726
727
#ifndef WOLFSSL_NO_CONST_CMP
728
/* check all length bytes for equality, return 0 on success */
729
WC_MISC_STATIC WC_INLINE int ConstantCompare(const byte* a, const byte* b,
730
                                             int length)
731
0
{
732
0
    int i;
733
0
    int compareSum = 0;
734
735
0
    for (i = 0; i < length; i++) {
736
0
        compareSum |= a[i] ^ b[i];
737
0
    }
738
739
0
    return compareSum;
740
0
}
Unexecuted instantiation: ssl.c:ConstantCompare
Unexecuted instantiation: tls.c:ConstantCompare
Unexecuted instantiation: tls13.c:ConstantCompare
Unexecuted instantiation: hmac.c:ConstantCompare
Unexecuted instantiation: hash.c:ConstantCompare
Unexecuted instantiation: kdf.c:ConstantCompare
Unexecuted instantiation: random.c:ConstantCompare
Unexecuted instantiation: sha256.c:ConstantCompare
Unexecuted instantiation: rsa.c:ConstantCompare
Unexecuted instantiation: sp_int.c:ConstantCompare
Unexecuted instantiation: aes.c:ConstantCompare
Unexecuted instantiation: sha.c:ConstantCompare
Unexecuted instantiation: sha512.c:ConstantCompare
Unexecuted instantiation: sha3.c:ConstantCompare
Unexecuted instantiation: wolfmath.c:ConstantCompare
Unexecuted instantiation: memory.c:ConstantCompare
Unexecuted instantiation: dh.c:ConstantCompare
Unexecuted instantiation: asn.c:ConstantCompare
Unexecuted instantiation: coding.c:ConstantCompare
Unexecuted instantiation: poly1305.c:ConstantCompare
Unexecuted instantiation: chacha.c:ConstantCompare
Unexecuted instantiation: ecc.c:ConstantCompare
Unexecuted instantiation: wc_mlkem.c:ConstantCompare
Unexecuted instantiation: wc_mlkem_poly.c:ConstantCompare
Unexecuted instantiation: internal.c:ConstantCompare
Unexecuted instantiation: keys.c:ConstantCompare
Unexecuted instantiation: wc_encrypt.c:ConstantCompare
Unexecuted instantiation: pwdbased.c:ConstantCompare
741
#endif
742
743
744
#if defined(WOLFSSL_NO_CT_OPS) && (!defined(NO_RSA) || !defined(WOLFCRYPT_ONLY)) \
745
    && (!defined(WOLFSSL_RSA_VERIFY_ONLY))
746
/* constant time operations with mask are required for RSA and TLS operations */
747
#warning constant time operations required unless using NO_RSA & WOLFCRYPT_ONLY
748
#endif
749
750
#if !defined(WOLFSSL_NO_CT_OPS) || !defined(NO_RSA) || !defined(WOLFCRYPT_ONLY)
751
/* Constant time - mask set when a > b. */
752
WC_MISC_STATIC WC_INLINE byte ctMaskGT(int a, int b)
753
0
{
754
0
    return (byte)((((word32)a - (word32)b - 1) >> 31) - 1);
755
0
}
Unexecuted instantiation: ssl.c:ctMaskGT
Unexecuted instantiation: tls.c:ctMaskGT
Unexecuted instantiation: tls13.c:ctMaskGT
Unexecuted instantiation: hmac.c:ctMaskGT
Unexecuted instantiation: hash.c:ctMaskGT
Unexecuted instantiation: kdf.c:ctMaskGT
Unexecuted instantiation: random.c:ctMaskGT
Unexecuted instantiation: sha256.c:ctMaskGT
Unexecuted instantiation: rsa.c:ctMaskGT
Unexecuted instantiation: sp_int.c:ctMaskGT
Unexecuted instantiation: aes.c:ctMaskGT
Unexecuted instantiation: sha.c:ctMaskGT
Unexecuted instantiation: sha512.c:ctMaskGT
Unexecuted instantiation: sha3.c:ctMaskGT
Unexecuted instantiation: wolfmath.c:ctMaskGT
Unexecuted instantiation: memory.c:ctMaskGT
Unexecuted instantiation: dh.c:ctMaskGT
Unexecuted instantiation: asn.c:ctMaskGT
Unexecuted instantiation: coding.c:ctMaskGT
Unexecuted instantiation: poly1305.c:ctMaskGT
Unexecuted instantiation: chacha.c:ctMaskGT
Unexecuted instantiation: ecc.c:ctMaskGT
Unexecuted instantiation: wc_mlkem.c:ctMaskGT
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskGT
Unexecuted instantiation: internal.c:ctMaskGT
Unexecuted instantiation: keys.c:ctMaskGT
Unexecuted instantiation: wc_encrypt.c:ctMaskGT
Unexecuted instantiation: pwdbased.c:ctMaskGT
756
757
/* Constant time - mask set when a >= b. */
758
WC_MISC_STATIC WC_INLINE byte ctMaskGTE(int a, int b)
759
0
{
760
0
    return (byte)((((word32)a - (word32)b) >> 31) - 1);
761
0
}
Unexecuted instantiation: ssl.c:ctMaskGTE
Unexecuted instantiation: tls.c:ctMaskGTE
Unexecuted instantiation: tls13.c:ctMaskGTE
Unexecuted instantiation: hmac.c:ctMaskGTE
Unexecuted instantiation: hash.c:ctMaskGTE
Unexecuted instantiation: kdf.c:ctMaskGTE
Unexecuted instantiation: random.c:ctMaskGTE
Unexecuted instantiation: sha256.c:ctMaskGTE
Unexecuted instantiation: rsa.c:ctMaskGTE
Unexecuted instantiation: sp_int.c:ctMaskGTE
Unexecuted instantiation: aes.c:ctMaskGTE
Unexecuted instantiation: sha.c:ctMaskGTE
Unexecuted instantiation: sha512.c:ctMaskGTE
Unexecuted instantiation: sha3.c:ctMaskGTE
Unexecuted instantiation: wolfmath.c:ctMaskGTE
Unexecuted instantiation: memory.c:ctMaskGTE
Unexecuted instantiation: dh.c:ctMaskGTE
Unexecuted instantiation: asn.c:ctMaskGTE
Unexecuted instantiation: coding.c:ctMaskGTE
Unexecuted instantiation: poly1305.c:ctMaskGTE
Unexecuted instantiation: chacha.c:ctMaskGTE
Unexecuted instantiation: ecc.c:ctMaskGTE
Unexecuted instantiation: wc_mlkem.c:ctMaskGTE
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskGTE
Unexecuted instantiation: internal.c:ctMaskGTE
Unexecuted instantiation: keys.c:ctMaskGTE
Unexecuted instantiation: wc_encrypt.c:ctMaskGTE
Unexecuted instantiation: pwdbased.c:ctMaskGTE
762
763
/* Constant time - mask set when a >= b. */
764
WC_MISC_STATIC WC_INLINE int ctMaskIntGTE(int a, int b)
765
0
{
766
0
    return (int)((((word32)a - (word32)b) >> 31) - 1);
767
0
}
Unexecuted instantiation: ssl.c:ctMaskIntGTE
Unexecuted instantiation: tls.c:ctMaskIntGTE
Unexecuted instantiation: tls13.c:ctMaskIntGTE
Unexecuted instantiation: hmac.c:ctMaskIntGTE
Unexecuted instantiation: hash.c:ctMaskIntGTE
Unexecuted instantiation: kdf.c:ctMaskIntGTE
Unexecuted instantiation: random.c:ctMaskIntGTE
Unexecuted instantiation: sha256.c:ctMaskIntGTE
Unexecuted instantiation: rsa.c:ctMaskIntGTE
Unexecuted instantiation: sp_int.c:ctMaskIntGTE
Unexecuted instantiation: aes.c:ctMaskIntGTE
Unexecuted instantiation: sha.c:ctMaskIntGTE
Unexecuted instantiation: sha512.c:ctMaskIntGTE
Unexecuted instantiation: sha3.c:ctMaskIntGTE
Unexecuted instantiation: wolfmath.c:ctMaskIntGTE
Unexecuted instantiation: memory.c:ctMaskIntGTE
Unexecuted instantiation: dh.c:ctMaskIntGTE
Unexecuted instantiation: asn.c:ctMaskIntGTE
Unexecuted instantiation: coding.c:ctMaskIntGTE
Unexecuted instantiation: poly1305.c:ctMaskIntGTE
Unexecuted instantiation: chacha.c:ctMaskIntGTE
Unexecuted instantiation: ecc.c:ctMaskIntGTE
Unexecuted instantiation: wc_mlkem.c:ctMaskIntGTE
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskIntGTE
Unexecuted instantiation: internal.c:ctMaskIntGTE
Unexecuted instantiation: keys.c:ctMaskIntGTE
Unexecuted instantiation: wc_encrypt.c:ctMaskIntGTE
Unexecuted instantiation: pwdbased.c:ctMaskIntGTE
768
769
#ifdef WORD64_AVAILABLE
770
/* Constant time - mask set when a >= b. */
771
WC_MISC_STATIC WC_INLINE word32 ctMaskWord32GTE(word32 a, word32 b)
772
0
{
773
0
  return (word32)((((word64)a - (word64)b) >> 63) - 1);
774
0
}
Unexecuted instantiation: ssl.c:ctMaskWord32GTE
Unexecuted instantiation: tls.c:ctMaskWord32GTE
Unexecuted instantiation: tls13.c:ctMaskWord32GTE
Unexecuted instantiation: hmac.c:ctMaskWord32GTE
Unexecuted instantiation: hash.c:ctMaskWord32GTE
Unexecuted instantiation: kdf.c:ctMaskWord32GTE
Unexecuted instantiation: random.c:ctMaskWord32GTE
Unexecuted instantiation: sha256.c:ctMaskWord32GTE
Unexecuted instantiation: rsa.c:ctMaskWord32GTE
Unexecuted instantiation: sp_int.c:ctMaskWord32GTE
Unexecuted instantiation: aes.c:ctMaskWord32GTE
Unexecuted instantiation: sha.c:ctMaskWord32GTE
Unexecuted instantiation: sha512.c:ctMaskWord32GTE
Unexecuted instantiation: sha3.c:ctMaskWord32GTE
Unexecuted instantiation: wolfmath.c:ctMaskWord32GTE
Unexecuted instantiation: memory.c:ctMaskWord32GTE
Unexecuted instantiation: dh.c:ctMaskWord32GTE
Unexecuted instantiation: asn.c:ctMaskWord32GTE
Unexecuted instantiation: coding.c:ctMaskWord32GTE
Unexecuted instantiation: poly1305.c:ctMaskWord32GTE
Unexecuted instantiation: chacha.c:ctMaskWord32GTE
Unexecuted instantiation: ecc.c:ctMaskWord32GTE
Unexecuted instantiation: wc_mlkem.c:ctMaskWord32GTE
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskWord32GTE
Unexecuted instantiation: internal.c:ctMaskWord32GTE
Unexecuted instantiation: keys.c:ctMaskWord32GTE
Unexecuted instantiation: wc_encrypt.c:ctMaskWord32GTE
Unexecuted instantiation: pwdbased.c:ctMaskWord32GTE
775
#endif
776
777
/* Constant time - mask set when a < b. */
778
WC_MISC_STATIC WC_INLINE byte ctMaskLT(int a, int b)
779
0
{
780
0
    return (byte)((((word32)b - (word32)a - 1) >> 31) - 1);
781
0
}
Unexecuted instantiation: ssl.c:ctMaskLT
Unexecuted instantiation: tls.c:ctMaskLT
Unexecuted instantiation: tls13.c:ctMaskLT
Unexecuted instantiation: hmac.c:ctMaskLT
Unexecuted instantiation: hash.c:ctMaskLT
Unexecuted instantiation: kdf.c:ctMaskLT
Unexecuted instantiation: random.c:ctMaskLT
Unexecuted instantiation: sha256.c:ctMaskLT
Unexecuted instantiation: rsa.c:ctMaskLT
Unexecuted instantiation: sp_int.c:ctMaskLT
Unexecuted instantiation: aes.c:ctMaskLT
Unexecuted instantiation: sha.c:ctMaskLT
Unexecuted instantiation: sha512.c:ctMaskLT
Unexecuted instantiation: sha3.c:ctMaskLT
Unexecuted instantiation: wolfmath.c:ctMaskLT
Unexecuted instantiation: memory.c:ctMaskLT
Unexecuted instantiation: dh.c:ctMaskLT
Unexecuted instantiation: asn.c:ctMaskLT
Unexecuted instantiation: coding.c:ctMaskLT
Unexecuted instantiation: poly1305.c:ctMaskLT
Unexecuted instantiation: chacha.c:ctMaskLT
Unexecuted instantiation: ecc.c:ctMaskLT
Unexecuted instantiation: wc_mlkem.c:ctMaskLT
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskLT
Unexecuted instantiation: internal.c:ctMaskLT
Unexecuted instantiation: keys.c:ctMaskLT
Unexecuted instantiation: wc_encrypt.c:ctMaskLT
Unexecuted instantiation: pwdbased.c:ctMaskLT
782
783
/* Constant time - mask set when a <= b. */
784
WC_MISC_STATIC WC_INLINE byte ctMaskLTE(int a, int b)
785
0
{
786
0
    return (byte)((((word32)b - (word32)a) >> 31) - 1);
787
0
}
Unexecuted instantiation: ssl.c:ctMaskLTE
Unexecuted instantiation: tls.c:ctMaskLTE
Unexecuted instantiation: tls13.c:ctMaskLTE
Unexecuted instantiation: hmac.c:ctMaskLTE
Unexecuted instantiation: hash.c:ctMaskLTE
Unexecuted instantiation: kdf.c:ctMaskLTE
Unexecuted instantiation: random.c:ctMaskLTE
Unexecuted instantiation: sha256.c:ctMaskLTE
Unexecuted instantiation: rsa.c:ctMaskLTE
Unexecuted instantiation: sp_int.c:ctMaskLTE
Unexecuted instantiation: aes.c:ctMaskLTE
Unexecuted instantiation: sha.c:ctMaskLTE
Unexecuted instantiation: sha512.c:ctMaskLTE
Unexecuted instantiation: sha3.c:ctMaskLTE
Unexecuted instantiation: wolfmath.c:ctMaskLTE
Unexecuted instantiation: memory.c:ctMaskLTE
Unexecuted instantiation: dh.c:ctMaskLTE
Unexecuted instantiation: asn.c:ctMaskLTE
Unexecuted instantiation: coding.c:ctMaskLTE
Unexecuted instantiation: poly1305.c:ctMaskLTE
Unexecuted instantiation: chacha.c:ctMaskLTE
Unexecuted instantiation: ecc.c:ctMaskLTE
Unexecuted instantiation: wc_mlkem.c:ctMaskLTE
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskLTE
Unexecuted instantiation: internal.c:ctMaskLTE
Unexecuted instantiation: keys.c:ctMaskLTE
Unexecuted instantiation: wc_encrypt.c:ctMaskLTE
Unexecuted instantiation: pwdbased.c:ctMaskLTE
788
789
/* Constant time - mask set when a == b. */
790
WC_MISC_STATIC WC_INLINE byte ctMaskEq(int a, int b)
791
0
{
792
0
    return (byte)((byte)(~ctMaskGT(a, b)) & (byte)(~ctMaskLT(a, b)));
793
0
}
Unexecuted instantiation: ssl.c:ctMaskEq
Unexecuted instantiation: tls.c:ctMaskEq
Unexecuted instantiation: tls13.c:ctMaskEq
Unexecuted instantiation: hmac.c:ctMaskEq
Unexecuted instantiation: hash.c:ctMaskEq
Unexecuted instantiation: kdf.c:ctMaskEq
Unexecuted instantiation: random.c:ctMaskEq
Unexecuted instantiation: sha256.c:ctMaskEq
Unexecuted instantiation: rsa.c:ctMaskEq
Unexecuted instantiation: sp_int.c:ctMaskEq
Unexecuted instantiation: aes.c:ctMaskEq
Unexecuted instantiation: sha.c:ctMaskEq
Unexecuted instantiation: sha512.c:ctMaskEq
Unexecuted instantiation: sha3.c:ctMaskEq
Unexecuted instantiation: wolfmath.c:ctMaskEq
Unexecuted instantiation: memory.c:ctMaskEq
Unexecuted instantiation: dh.c:ctMaskEq
Unexecuted instantiation: asn.c:ctMaskEq
Unexecuted instantiation: coding.c:ctMaskEq
Unexecuted instantiation: poly1305.c:ctMaskEq
Unexecuted instantiation: chacha.c:ctMaskEq
Unexecuted instantiation: ecc.c:ctMaskEq
Unexecuted instantiation: wc_mlkem.c:ctMaskEq
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskEq
Unexecuted instantiation: internal.c:ctMaskEq
Unexecuted instantiation: keys.c:ctMaskEq
Unexecuted instantiation: wc_encrypt.c:ctMaskEq
Unexecuted instantiation: pwdbased.c:ctMaskEq
794
795
/* Constant time - sets 16 bit integer mask when a > b */
796
WC_MISC_STATIC WC_INLINE word16 ctMask16GT(int a, int b)
797
0
{
798
0
    return (word16)((((word32)a - (word32)b - 1) >> 31) - 1);
799
0
}
Unexecuted instantiation: ssl.c:ctMask16GT
Unexecuted instantiation: tls.c:ctMask16GT
Unexecuted instantiation: tls13.c:ctMask16GT
Unexecuted instantiation: hmac.c:ctMask16GT
Unexecuted instantiation: hash.c:ctMask16GT
Unexecuted instantiation: kdf.c:ctMask16GT
Unexecuted instantiation: random.c:ctMask16GT
Unexecuted instantiation: sha256.c:ctMask16GT
Unexecuted instantiation: rsa.c:ctMask16GT
Unexecuted instantiation: sp_int.c:ctMask16GT
Unexecuted instantiation: aes.c:ctMask16GT
Unexecuted instantiation: sha.c:ctMask16GT
Unexecuted instantiation: sha512.c:ctMask16GT
Unexecuted instantiation: sha3.c:ctMask16GT
Unexecuted instantiation: wolfmath.c:ctMask16GT
Unexecuted instantiation: memory.c:ctMask16GT
Unexecuted instantiation: dh.c:ctMask16GT
Unexecuted instantiation: asn.c:ctMask16GT
Unexecuted instantiation: coding.c:ctMask16GT
Unexecuted instantiation: poly1305.c:ctMask16GT
Unexecuted instantiation: chacha.c:ctMask16GT
Unexecuted instantiation: ecc.c:ctMask16GT
Unexecuted instantiation: wc_mlkem.c:ctMask16GT
Unexecuted instantiation: wc_mlkem_poly.c:ctMask16GT
Unexecuted instantiation: internal.c:ctMask16GT
Unexecuted instantiation: keys.c:ctMask16GT
Unexecuted instantiation: wc_encrypt.c:ctMask16GT
Unexecuted instantiation: pwdbased.c:ctMask16GT
800
801
/* Constant time - sets 16 bit integer mask when a >= b */
802
WC_MISC_STATIC WC_INLINE word16 ctMask16GTE(int a, int b)
803
0
{
804
0
    return (word16)((((word32)a - (word32)b) >> 31) - 1);
805
0
}
Unexecuted instantiation: ssl.c:ctMask16GTE
Unexecuted instantiation: tls.c:ctMask16GTE
Unexecuted instantiation: tls13.c:ctMask16GTE
Unexecuted instantiation: hmac.c:ctMask16GTE
Unexecuted instantiation: hash.c:ctMask16GTE
Unexecuted instantiation: kdf.c:ctMask16GTE
Unexecuted instantiation: random.c:ctMask16GTE
Unexecuted instantiation: sha256.c:ctMask16GTE
Unexecuted instantiation: rsa.c:ctMask16GTE
Unexecuted instantiation: sp_int.c:ctMask16GTE
Unexecuted instantiation: aes.c:ctMask16GTE
Unexecuted instantiation: sha.c:ctMask16GTE
Unexecuted instantiation: sha512.c:ctMask16GTE
Unexecuted instantiation: sha3.c:ctMask16GTE
Unexecuted instantiation: wolfmath.c:ctMask16GTE
Unexecuted instantiation: memory.c:ctMask16GTE
Unexecuted instantiation: dh.c:ctMask16GTE
Unexecuted instantiation: asn.c:ctMask16GTE
Unexecuted instantiation: coding.c:ctMask16GTE
Unexecuted instantiation: poly1305.c:ctMask16GTE
Unexecuted instantiation: chacha.c:ctMask16GTE
Unexecuted instantiation: ecc.c:ctMask16GTE
Unexecuted instantiation: wc_mlkem.c:ctMask16GTE
Unexecuted instantiation: wc_mlkem_poly.c:ctMask16GTE
Unexecuted instantiation: internal.c:ctMask16GTE
Unexecuted instantiation: keys.c:ctMask16GTE
Unexecuted instantiation: wc_encrypt.c:ctMask16GTE
Unexecuted instantiation: pwdbased.c:ctMask16GTE
806
807
/* Constant time - sets 16 bit integer mask when a < b. */
808
WC_MISC_STATIC WC_INLINE word16 ctMask16LT(int a, int b)
809
0
{
810
0
    return (word16)((((word32)b - (word32)a - 1) >> 31) - 1);
811
0
}
Unexecuted instantiation: ssl.c:ctMask16LT
Unexecuted instantiation: tls.c:ctMask16LT
Unexecuted instantiation: tls13.c:ctMask16LT
Unexecuted instantiation: hmac.c:ctMask16LT
Unexecuted instantiation: hash.c:ctMask16LT
Unexecuted instantiation: kdf.c:ctMask16LT
Unexecuted instantiation: random.c:ctMask16LT
Unexecuted instantiation: sha256.c:ctMask16LT
Unexecuted instantiation: rsa.c:ctMask16LT
Unexecuted instantiation: sp_int.c:ctMask16LT
Unexecuted instantiation: aes.c:ctMask16LT
Unexecuted instantiation: sha.c:ctMask16LT
Unexecuted instantiation: sha512.c:ctMask16LT
Unexecuted instantiation: sha3.c:ctMask16LT
Unexecuted instantiation: wolfmath.c:ctMask16LT
Unexecuted instantiation: memory.c:ctMask16LT
Unexecuted instantiation: dh.c:ctMask16LT
Unexecuted instantiation: asn.c:ctMask16LT
Unexecuted instantiation: coding.c:ctMask16LT
Unexecuted instantiation: poly1305.c:ctMask16LT
Unexecuted instantiation: chacha.c:ctMask16LT
Unexecuted instantiation: ecc.c:ctMask16LT
Unexecuted instantiation: wc_mlkem.c:ctMask16LT
Unexecuted instantiation: wc_mlkem_poly.c:ctMask16LT
Unexecuted instantiation: internal.c:ctMask16LT
Unexecuted instantiation: keys.c:ctMask16LT
Unexecuted instantiation: wc_encrypt.c:ctMask16LT
Unexecuted instantiation: pwdbased.c:ctMask16LT
812
813
/* Constant time - sets 16 bit integer mask when a <= b. */
814
WC_MISC_STATIC WC_INLINE word16 ctMask16LTE(int a, int b)
815
0
{
816
0
    return (word16)((((word32)b - (word32)a) >> 31) - 1);
817
0
}
Unexecuted instantiation: ssl.c:ctMask16LTE
Unexecuted instantiation: tls.c:ctMask16LTE
Unexecuted instantiation: tls13.c:ctMask16LTE
Unexecuted instantiation: hmac.c:ctMask16LTE
Unexecuted instantiation: hash.c:ctMask16LTE
Unexecuted instantiation: kdf.c:ctMask16LTE
Unexecuted instantiation: random.c:ctMask16LTE
Unexecuted instantiation: sha256.c:ctMask16LTE
Unexecuted instantiation: rsa.c:ctMask16LTE
Unexecuted instantiation: sp_int.c:ctMask16LTE
Unexecuted instantiation: aes.c:ctMask16LTE
Unexecuted instantiation: sha.c:ctMask16LTE
Unexecuted instantiation: sha512.c:ctMask16LTE
Unexecuted instantiation: sha3.c:ctMask16LTE
Unexecuted instantiation: wolfmath.c:ctMask16LTE
Unexecuted instantiation: memory.c:ctMask16LTE
Unexecuted instantiation: dh.c:ctMask16LTE
Unexecuted instantiation: asn.c:ctMask16LTE
Unexecuted instantiation: coding.c:ctMask16LTE
Unexecuted instantiation: poly1305.c:ctMask16LTE
Unexecuted instantiation: chacha.c:ctMask16LTE
Unexecuted instantiation: ecc.c:ctMask16LTE
Unexecuted instantiation: wc_mlkem.c:ctMask16LTE
Unexecuted instantiation: wc_mlkem_poly.c:ctMask16LTE
Unexecuted instantiation: internal.c:ctMask16LTE
Unexecuted instantiation: keys.c:ctMask16LTE
Unexecuted instantiation: wc_encrypt.c:ctMask16LTE
Unexecuted instantiation: pwdbased.c:ctMask16LTE
818
819
/* Constant time - sets 16 bit integer mask when a == b. */
820
WC_MISC_STATIC WC_INLINE word16 ctMask16Eq(int a, int b)
821
0
{
822
0
    return (word16)((word16)(~ctMask16GT(a, b)) & (word16)(~ctMask16LT(a, b)));
823
0
}
Unexecuted instantiation: ssl.c:ctMask16Eq
Unexecuted instantiation: tls.c:ctMask16Eq
Unexecuted instantiation: tls13.c:ctMask16Eq
Unexecuted instantiation: hmac.c:ctMask16Eq
Unexecuted instantiation: hash.c:ctMask16Eq
Unexecuted instantiation: kdf.c:ctMask16Eq
Unexecuted instantiation: random.c:ctMask16Eq
Unexecuted instantiation: sha256.c:ctMask16Eq
Unexecuted instantiation: rsa.c:ctMask16Eq
Unexecuted instantiation: sp_int.c:ctMask16Eq
Unexecuted instantiation: aes.c:ctMask16Eq
Unexecuted instantiation: sha.c:ctMask16Eq
Unexecuted instantiation: sha512.c:ctMask16Eq
Unexecuted instantiation: sha3.c:ctMask16Eq
Unexecuted instantiation: wolfmath.c:ctMask16Eq
Unexecuted instantiation: memory.c:ctMask16Eq
Unexecuted instantiation: dh.c:ctMask16Eq
Unexecuted instantiation: asn.c:ctMask16Eq
Unexecuted instantiation: coding.c:ctMask16Eq
Unexecuted instantiation: poly1305.c:ctMask16Eq
Unexecuted instantiation: chacha.c:ctMask16Eq
Unexecuted instantiation: ecc.c:ctMask16Eq
Unexecuted instantiation: wc_mlkem.c:ctMask16Eq
Unexecuted instantiation: wc_mlkem_poly.c:ctMask16Eq
Unexecuted instantiation: internal.c:ctMask16Eq
Unexecuted instantiation: keys.c:ctMask16Eq
Unexecuted instantiation: wc_encrypt.c:ctMask16Eq
Unexecuted instantiation: pwdbased.c:ctMask16Eq
824
825
/* Constant time - mask set when a != b. */
826
WC_MISC_STATIC WC_INLINE byte ctMaskNotEq(int a, int b)
827
0
{
828
0
    return (byte)((byte)ctMaskGT(a, b) | (byte)ctMaskLT(a, b));
829
0
}
Unexecuted instantiation: ssl.c:ctMaskNotEq
Unexecuted instantiation: tls.c:ctMaskNotEq
Unexecuted instantiation: tls13.c:ctMaskNotEq
Unexecuted instantiation: hmac.c:ctMaskNotEq
Unexecuted instantiation: hash.c:ctMaskNotEq
Unexecuted instantiation: kdf.c:ctMaskNotEq
Unexecuted instantiation: random.c:ctMaskNotEq
Unexecuted instantiation: sha256.c:ctMaskNotEq
Unexecuted instantiation: rsa.c:ctMaskNotEq
Unexecuted instantiation: sp_int.c:ctMaskNotEq
Unexecuted instantiation: aes.c:ctMaskNotEq
Unexecuted instantiation: sha.c:ctMaskNotEq
Unexecuted instantiation: sha512.c:ctMaskNotEq
Unexecuted instantiation: sha3.c:ctMaskNotEq
Unexecuted instantiation: wolfmath.c:ctMaskNotEq
Unexecuted instantiation: memory.c:ctMaskNotEq
Unexecuted instantiation: dh.c:ctMaskNotEq
Unexecuted instantiation: asn.c:ctMaskNotEq
Unexecuted instantiation: coding.c:ctMaskNotEq
Unexecuted instantiation: poly1305.c:ctMaskNotEq
Unexecuted instantiation: chacha.c:ctMaskNotEq
Unexecuted instantiation: ecc.c:ctMaskNotEq
Unexecuted instantiation: wc_mlkem.c:ctMaskNotEq
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskNotEq
Unexecuted instantiation: internal.c:ctMaskNotEq
Unexecuted instantiation: keys.c:ctMaskNotEq
Unexecuted instantiation: wc_encrypt.c:ctMaskNotEq
Unexecuted instantiation: pwdbased.c:ctMaskNotEq
830
831
/* Constant time - select a when mask is set and b otherwise. */
832
WC_MISC_STATIC WC_INLINE byte ctMaskSel(byte m, byte a, byte b)
833
0
{
834
0
    return (byte)((b & ((byte)~(word32)m)) | (a & m));
835
0
}
Unexecuted instantiation: ssl.c:ctMaskSel
Unexecuted instantiation: tls.c:ctMaskSel
Unexecuted instantiation: tls13.c:ctMaskSel
Unexecuted instantiation: hmac.c:ctMaskSel
Unexecuted instantiation: hash.c:ctMaskSel
Unexecuted instantiation: kdf.c:ctMaskSel
Unexecuted instantiation: random.c:ctMaskSel
Unexecuted instantiation: sha256.c:ctMaskSel
Unexecuted instantiation: rsa.c:ctMaskSel
Unexecuted instantiation: sp_int.c:ctMaskSel
Unexecuted instantiation: aes.c:ctMaskSel
Unexecuted instantiation: sha.c:ctMaskSel
Unexecuted instantiation: sha512.c:ctMaskSel
Unexecuted instantiation: sha3.c:ctMaskSel
Unexecuted instantiation: wolfmath.c:ctMaskSel
Unexecuted instantiation: memory.c:ctMaskSel
Unexecuted instantiation: dh.c:ctMaskSel
Unexecuted instantiation: asn.c:ctMaskSel
Unexecuted instantiation: coding.c:ctMaskSel
Unexecuted instantiation: poly1305.c:ctMaskSel
Unexecuted instantiation: chacha.c:ctMaskSel
Unexecuted instantiation: ecc.c:ctMaskSel
Unexecuted instantiation: wc_mlkem.c:ctMaskSel
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskSel
Unexecuted instantiation: internal.c:ctMaskSel
Unexecuted instantiation: keys.c:ctMaskSel
Unexecuted instantiation: wc_encrypt.c:ctMaskSel
Unexecuted instantiation: pwdbased.c:ctMaskSel
836
837
/* Constant time - select integer a when mask is set and integer b otherwise. */
838
WC_MISC_STATIC WC_INLINE int ctMaskSelInt(byte m, int a, int b)
839
0
{
840
0
    return (b & (~(signed int)(signed char)m)) |
841
0
           (a & ( (signed int)(signed char)m));
842
0
}
Unexecuted instantiation: ssl.c:ctMaskSelInt
Unexecuted instantiation: tls.c:ctMaskSelInt
Unexecuted instantiation: tls13.c:ctMaskSelInt
Unexecuted instantiation: hmac.c:ctMaskSelInt
Unexecuted instantiation: hash.c:ctMaskSelInt
Unexecuted instantiation: kdf.c:ctMaskSelInt
Unexecuted instantiation: random.c:ctMaskSelInt
Unexecuted instantiation: sha256.c:ctMaskSelInt
Unexecuted instantiation: rsa.c:ctMaskSelInt
Unexecuted instantiation: sp_int.c:ctMaskSelInt
Unexecuted instantiation: aes.c:ctMaskSelInt
Unexecuted instantiation: sha.c:ctMaskSelInt
Unexecuted instantiation: sha512.c:ctMaskSelInt
Unexecuted instantiation: sha3.c:ctMaskSelInt
Unexecuted instantiation: wolfmath.c:ctMaskSelInt
Unexecuted instantiation: memory.c:ctMaskSelInt
Unexecuted instantiation: dh.c:ctMaskSelInt
Unexecuted instantiation: asn.c:ctMaskSelInt
Unexecuted instantiation: coding.c:ctMaskSelInt
Unexecuted instantiation: poly1305.c:ctMaskSelInt
Unexecuted instantiation: chacha.c:ctMaskSelInt
Unexecuted instantiation: ecc.c:ctMaskSelInt
Unexecuted instantiation: wc_mlkem.c:ctMaskSelInt
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskSelInt
Unexecuted instantiation: internal.c:ctMaskSelInt
Unexecuted instantiation: keys.c:ctMaskSelInt
Unexecuted instantiation: wc_encrypt.c:ctMaskSelInt
Unexecuted instantiation: pwdbased.c:ctMaskSelInt
843
844
/* Constant time - select word32 a when mask is set and word32 b otherwise. */
845
WC_MISC_STATIC WC_INLINE word32 ctMaskSelWord32(byte m, word32 a, word32 b)
846
0
{
847
0
    return (((word32)b & (word32)(~(signed int)(signed char)m)) |
848
0
            ((word32)a & (word32)( (signed int)(signed char)m)));
849
0
}
Unexecuted instantiation: ssl.c:ctMaskSelWord32
Unexecuted instantiation: tls.c:ctMaskSelWord32
Unexecuted instantiation: tls13.c:ctMaskSelWord32
Unexecuted instantiation: hmac.c:ctMaskSelWord32
Unexecuted instantiation: hash.c:ctMaskSelWord32
Unexecuted instantiation: kdf.c:ctMaskSelWord32
Unexecuted instantiation: random.c:ctMaskSelWord32
Unexecuted instantiation: sha256.c:ctMaskSelWord32
Unexecuted instantiation: rsa.c:ctMaskSelWord32
Unexecuted instantiation: sp_int.c:ctMaskSelWord32
Unexecuted instantiation: aes.c:ctMaskSelWord32
Unexecuted instantiation: sha.c:ctMaskSelWord32
Unexecuted instantiation: sha512.c:ctMaskSelWord32
Unexecuted instantiation: sha3.c:ctMaskSelWord32
Unexecuted instantiation: wolfmath.c:ctMaskSelWord32
Unexecuted instantiation: memory.c:ctMaskSelWord32
Unexecuted instantiation: dh.c:ctMaskSelWord32
Unexecuted instantiation: asn.c:ctMaskSelWord32
Unexecuted instantiation: coding.c:ctMaskSelWord32
Unexecuted instantiation: poly1305.c:ctMaskSelWord32
Unexecuted instantiation: chacha.c:ctMaskSelWord32
Unexecuted instantiation: ecc.c:ctMaskSelWord32
Unexecuted instantiation: wc_mlkem.c:ctMaskSelWord32
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskSelWord32
Unexecuted instantiation: internal.c:ctMaskSelWord32
Unexecuted instantiation: keys.c:ctMaskSelWord32
Unexecuted instantiation: wc_encrypt.c:ctMaskSelWord32
Unexecuted instantiation: pwdbased.c:ctMaskSelWord32
850
851
/* Constant time - bit set when a <= b. */
852
WC_MISC_STATIC WC_INLINE byte ctSetLTE(int a, int b)
853
0
{
854
0
    return (byte)(((word32)a - (word32)b - 1) >> 31);
855
0
}
Unexecuted instantiation: ssl.c:ctSetLTE
Unexecuted instantiation: tls.c:ctSetLTE
Unexecuted instantiation: tls13.c:ctSetLTE
Unexecuted instantiation: hmac.c:ctSetLTE
Unexecuted instantiation: hash.c:ctSetLTE
Unexecuted instantiation: kdf.c:ctSetLTE
Unexecuted instantiation: random.c:ctSetLTE
Unexecuted instantiation: sha256.c:ctSetLTE
Unexecuted instantiation: rsa.c:ctSetLTE
Unexecuted instantiation: sp_int.c:ctSetLTE
Unexecuted instantiation: aes.c:ctSetLTE
Unexecuted instantiation: sha.c:ctSetLTE
Unexecuted instantiation: sha512.c:ctSetLTE
Unexecuted instantiation: sha3.c:ctSetLTE
Unexecuted instantiation: wolfmath.c:ctSetLTE
Unexecuted instantiation: memory.c:ctSetLTE
Unexecuted instantiation: dh.c:ctSetLTE
Unexecuted instantiation: asn.c:ctSetLTE
Unexecuted instantiation: coding.c:ctSetLTE
Unexecuted instantiation: poly1305.c:ctSetLTE
Unexecuted instantiation: chacha.c:ctSetLTE
Unexecuted instantiation: ecc.c:ctSetLTE
Unexecuted instantiation: wc_mlkem.c:ctSetLTE
Unexecuted instantiation: wc_mlkem_poly.c:ctSetLTE
Unexecuted instantiation: internal.c:ctSetLTE
Unexecuted instantiation: keys.c:ctSetLTE
Unexecuted instantiation: wc_encrypt.c:ctSetLTE
Unexecuted instantiation: pwdbased.c:ctSetLTE
856
857
/* Constant time - conditionally copy size bytes from src to dst if mask is set
858
 */
859
WC_MISC_STATIC WC_INLINE void ctMaskCopy(byte mask, byte* dst, byte* src,
860
    word16 size)
861
0
{
862
0
    int i;
863
0
    for (i = 0; i < size; ++i) {
864
0
        dst[i] ^= (dst[i] ^ src[i]) & mask;
865
0
    }
866
0
}
Unexecuted instantiation: ssl.c:ctMaskCopy
Unexecuted instantiation: tls.c:ctMaskCopy
Unexecuted instantiation: tls13.c:ctMaskCopy
Unexecuted instantiation: hmac.c:ctMaskCopy
Unexecuted instantiation: hash.c:ctMaskCopy
Unexecuted instantiation: kdf.c:ctMaskCopy
Unexecuted instantiation: random.c:ctMaskCopy
Unexecuted instantiation: sha256.c:ctMaskCopy
Unexecuted instantiation: rsa.c:ctMaskCopy
Unexecuted instantiation: sp_int.c:ctMaskCopy
Unexecuted instantiation: aes.c:ctMaskCopy
Unexecuted instantiation: sha.c:ctMaskCopy
Unexecuted instantiation: sha512.c:ctMaskCopy
Unexecuted instantiation: sha3.c:ctMaskCopy
Unexecuted instantiation: wolfmath.c:ctMaskCopy
Unexecuted instantiation: memory.c:ctMaskCopy
Unexecuted instantiation: dh.c:ctMaskCopy
Unexecuted instantiation: asn.c:ctMaskCopy
Unexecuted instantiation: coding.c:ctMaskCopy
Unexecuted instantiation: poly1305.c:ctMaskCopy
Unexecuted instantiation: chacha.c:ctMaskCopy
Unexecuted instantiation: ecc.c:ctMaskCopy
Unexecuted instantiation: wc_mlkem.c:ctMaskCopy
Unexecuted instantiation: wc_mlkem_poly.c:ctMaskCopy
Unexecuted instantiation: internal.c:ctMaskCopy
Unexecuted instantiation: keys.c:ctMaskCopy
Unexecuted instantiation: wc_encrypt.c:ctMaskCopy
Unexecuted instantiation: pwdbased.c:ctMaskCopy
867
868
#endif /* !WOLFSSL_NO_CT_OPS */
869
870
#ifndef WOLFSSL_HAVE_MIN
871
    #define WOLFSSL_HAVE_MIN
872
    #if defined(HAVE_FIPS) && !defined(min) /* so ifdef check passes */
873
        #define min min
874
    #endif
875
    /* returns the smaller of a and b */
876
    WC_MISC_STATIC WC_INLINE word32 min(word32 a, word32 b)
877
0
    {
878
0
#if !defined(WOLFSSL_NO_CT_OPS) && !defined(WOLFSSL_NO_CT_MAX_MIN) && \
879
0
    defined(WORD64_AVAILABLE)
880
0
        volatile word32 gte_mask = (word32)ctMaskWord32GTE(a, b);
881
0
        word32 r = (a & ~gte_mask);
882
0
        r |= (b & gte_mask);
883
0
        return r;
884
#else /* WOLFSSL_NO_CT_OPS */
885
        return a > b ? b : a;
886
#endif /* WOLFSSL_NO_CT_OPS */
887
0
    }
Unexecuted instantiation: ssl.c:min
Unexecuted instantiation: tls.c:min
Unexecuted instantiation: tls13.c:min
Unexecuted instantiation: hmac.c:min
Unexecuted instantiation: hash.c:min
Unexecuted instantiation: kdf.c:min
Unexecuted instantiation: random.c:min
Unexecuted instantiation: sha256.c:min
Unexecuted instantiation: rsa.c:min
Unexecuted instantiation: sp_int.c:min
Unexecuted instantiation: aes.c:min
Unexecuted instantiation: sha.c:min
Unexecuted instantiation: sha512.c:min
Unexecuted instantiation: sha3.c:min
Unexecuted instantiation: wolfmath.c:min
Unexecuted instantiation: memory.c:min
Unexecuted instantiation: dh.c:min
Unexecuted instantiation: asn.c:min
Unexecuted instantiation: coding.c:min
Unexecuted instantiation: poly1305.c:min
Unexecuted instantiation: chacha.c:min
Unexecuted instantiation: ecc.c:min
Unexecuted instantiation: wc_mlkem.c:min
Unexecuted instantiation: wc_mlkem_poly.c:min
Unexecuted instantiation: internal.c:min
Unexecuted instantiation: keys.c:min
Unexecuted instantiation: wc_encrypt.c:min
Unexecuted instantiation: pwdbased.c:min
888
#endif /* !WOLFSSL_HAVE_MIN */
889
890
#ifndef WOLFSSL_HAVE_MAX
891
    #define WOLFSSL_HAVE_MAX
892
    #if defined(HAVE_FIPS) && !defined(max) /* so ifdef check passes */
893
        #define max max
894
    #endif
895
    WC_MISC_STATIC WC_INLINE word32 max(word32 a, word32 b)
896
0
    {
897
0
#if !defined(WOLFSSL_NO_CT_OPS) && !defined(WOLFSSL_NO_CT_MAX_MIN) && \
898
0
    defined(WORD64_AVAILABLE)
899
0
        volatile word32 gte_mask = (word32)ctMaskWord32GTE(a, b);
900
0
        return (a & gte_mask) | (b & ~gte_mask);
901
0
#else /* WOLFSSL_NO_CT_OPS */
902
0
        return a > b ? a : b;
903
0
#endif /* WOLFSSL_NO_CT_OPS */
904
0
    }
Unexecuted instantiation: ssl.c:max
Unexecuted instantiation: tls.c:max
Unexecuted instantiation: tls13.c:max
Unexecuted instantiation: hmac.c:max
Unexecuted instantiation: hash.c:max
Unexecuted instantiation: kdf.c:max
Unexecuted instantiation: random.c:max
Unexecuted instantiation: sha256.c:max
Unexecuted instantiation: rsa.c:max
Unexecuted instantiation: sp_int.c:max
Unexecuted instantiation: aes.c:max
Unexecuted instantiation: sha.c:max
Unexecuted instantiation: sha512.c:max
Unexecuted instantiation: sha3.c:max
Unexecuted instantiation: wolfmath.c:max
Unexecuted instantiation: memory.c:max
Unexecuted instantiation: dh.c:max
Unexecuted instantiation: asn.c:max
Unexecuted instantiation: coding.c:max
Unexecuted instantiation: poly1305.c:max
Unexecuted instantiation: chacha.c:max
Unexecuted instantiation: ecc.c:max
Unexecuted instantiation: wc_mlkem.c:max
Unexecuted instantiation: wc_mlkem_poly.c:max
Unexecuted instantiation: internal.c:max
Unexecuted instantiation: keys.c:max
Unexecuted instantiation: wc_encrypt.c:max
Unexecuted instantiation: pwdbased.c:max
905
#endif /* !WOLFSSL_HAVE_MAX */
906
907
#ifndef WOLFSSL_NO_INT_ENCODE
908
/* converts a 32 bit integer to 24 bit */
909
WC_MISC_STATIC WC_INLINE void c32to24(word32 in, word24 out)
910
0
{
911
0
    out[0] = (byte)((in >> 16) & 0xff);
912
0
    out[1] = (byte)((in >>  8) & 0xff);
913
0
    out[2] =  (byte)(in        & 0xff);
914
0
}
Unexecuted instantiation: ssl.c:c32to24
Unexecuted instantiation: tls.c:c32to24
Unexecuted instantiation: tls13.c:c32to24
Unexecuted instantiation: hmac.c:c32to24
Unexecuted instantiation: hash.c:c32to24
Unexecuted instantiation: kdf.c:c32to24
Unexecuted instantiation: random.c:c32to24
Unexecuted instantiation: sha256.c:c32to24
Unexecuted instantiation: rsa.c:c32to24
Unexecuted instantiation: sp_int.c:c32to24
Unexecuted instantiation: aes.c:c32to24
Unexecuted instantiation: sha.c:c32to24
Unexecuted instantiation: sha512.c:c32to24
Unexecuted instantiation: sha3.c:c32to24
Unexecuted instantiation: wolfmath.c:c32to24
Unexecuted instantiation: memory.c:c32to24
Unexecuted instantiation: dh.c:c32to24
Unexecuted instantiation: asn.c:c32to24
Unexecuted instantiation: coding.c:c32to24
Unexecuted instantiation: poly1305.c:c32to24
Unexecuted instantiation: chacha.c:c32to24
Unexecuted instantiation: ecc.c:c32to24
Unexecuted instantiation: wc_mlkem.c:c32to24
Unexecuted instantiation: wc_mlkem_poly.c:c32to24
Unexecuted instantiation: internal.c:c32to24
Unexecuted instantiation: keys.c:c32to24
Unexecuted instantiation: wc_encrypt.c:c32to24
Unexecuted instantiation: pwdbased.c:c32to24
915
916
/* convert 16 bit integer to opaque */
917
WC_MISC_STATIC WC_INLINE void c16toa(word16 wc_u16, byte* c)
918
0
{
919
0
    c[0] = (byte)((wc_u16 >> 8) & 0xff);
920
0
    c[1] =  (byte)(wc_u16       & 0xff);
921
0
}
Unexecuted instantiation: ssl.c:c16toa
Unexecuted instantiation: tls.c:c16toa
Unexecuted instantiation: tls13.c:c16toa
Unexecuted instantiation: hmac.c:c16toa
Unexecuted instantiation: hash.c:c16toa
Unexecuted instantiation: kdf.c:c16toa
Unexecuted instantiation: random.c:c16toa
Unexecuted instantiation: sha256.c:c16toa
Unexecuted instantiation: rsa.c:c16toa
Unexecuted instantiation: sp_int.c:c16toa
Unexecuted instantiation: aes.c:c16toa
Unexecuted instantiation: sha.c:c16toa
Unexecuted instantiation: sha512.c:c16toa
Unexecuted instantiation: sha3.c:c16toa
Unexecuted instantiation: wolfmath.c:c16toa
Unexecuted instantiation: memory.c:c16toa
Unexecuted instantiation: dh.c:c16toa
Unexecuted instantiation: asn.c:c16toa
Unexecuted instantiation: coding.c:c16toa
Unexecuted instantiation: poly1305.c:c16toa
Unexecuted instantiation: chacha.c:c16toa
Unexecuted instantiation: ecc.c:c16toa
Unexecuted instantiation: wc_mlkem.c:c16toa
Unexecuted instantiation: wc_mlkem_poly.c:c16toa
Unexecuted instantiation: internal.c:c16toa
Unexecuted instantiation: keys.c:c16toa
Unexecuted instantiation: wc_encrypt.c:c16toa
Unexecuted instantiation: pwdbased.c:c16toa
922
923
/* convert 32 bit integer to opaque */
924
WC_MISC_STATIC WC_INLINE void c32toa(word32 wc_u32, byte* c)
925
0
{
926
0
#ifdef WOLFSSL_USE_ALIGN
927
0
    c[0] = (byte)((wc_u32 >> 24) & 0xff);
928
0
    c[1] = (byte)((wc_u32 >> 16) & 0xff);
929
0
    c[2] = (byte)((wc_u32 >>  8) & 0xff);
930
0
    c[3] =  (byte)(wc_u32        & 0xff);
931
#elif defined(LITTLE_ENDIAN_ORDER)
932
    *(word32*)c = ByteReverseWord32(wc_u32);
933
#else
934
    *(word32*)c = wc_u32;
935
#endif
936
0
}
Unexecuted instantiation: ssl.c:c32toa
Unexecuted instantiation: tls.c:c32toa
Unexecuted instantiation: tls13.c:c32toa
Unexecuted instantiation: hmac.c:c32toa
Unexecuted instantiation: hash.c:c32toa
Unexecuted instantiation: kdf.c:c32toa
Unexecuted instantiation: random.c:c32toa
Unexecuted instantiation: sha256.c:c32toa
Unexecuted instantiation: rsa.c:c32toa
Unexecuted instantiation: sp_int.c:c32toa
Unexecuted instantiation: aes.c:c32toa
Unexecuted instantiation: sha.c:c32toa
Unexecuted instantiation: sha512.c:c32toa
Unexecuted instantiation: sha3.c:c32toa
Unexecuted instantiation: wolfmath.c:c32toa
Unexecuted instantiation: memory.c:c32toa
Unexecuted instantiation: dh.c:c32toa
Unexecuted instantiation: asn.c:c32toa
Unexecuted instantiation: coding.c:c32toa
Unexecuted instantiation: poly1305.c:c32toa
Unexecuted instantiation: chacha.c:c32toa
Unexecuted instantiation: ecc.c:c32toa
Unexecuted instantiation: wc_mlkem.c:c32toa
Unexecuted instantiation: wc_mlkem_poly.c:c32toa
Unexecuted instantiation: internal.c:c32toa
Unexecuted instantiation: keys.c:c32toa
Unexecuted instantiation: wc_encrypt.c:c32toa
Unexecuted instantiation: pwdbased.c:c32toa
937
#endif
938
939
#ifndef WOLFSSL_NO_INT_DECODE
940
/* convert a 24 bit integer into a 32 bit one */
941
WC_MISC_STATIC WC_INLINE void c24to32(const word24 wc_u24, word32* wc_u32)
942
0
{
943
0
    *wc_u32 = ((word32)wc_u24[0] << 16) |
944
0
              ((word32)wc_u24[1] << 8) |
945
0
               (word32)wc_u24[2];
946
0
}
Unexecuted instantiation: ssl.c:c24to32
Unexecuted instantiation: tls.c:c24to32
Unexecuted instantiation: tls13.c:c24to32
Unexecuted instantiation: hmac.c:c24to32
Unexecuted instantiation: hash.c:c24to32
Unexecuted instantiation: kdf.c:c24to32
Unexecuted instantiation: random.c:c24to32
Unexecuted instantiation: sha256.c:c24to32
Unexecuted instantiation: rsa.c:c24to32
Unexecuted instantiation: sp_int.c:c24to32
Unexecuted instantiation: aes.c:c24to32
Unexecuted instantiation: sha.c:c24to32
Unexecuted instantiation: sha512.c:c24to32
Unexecuted instantiation: sha3.c:c24to32
Unexecuted instantiation: wolfmath.c:c24to32
Unexecuted instantiation: memory.c:c24to32
Unexecuted instantiation: dh.c:c24to32
Unexecuted instantiation: asn.c:c24to32
Unexecuted instantiation: coding.c:c24to32
Unexecuted instantiation: poly1305.c:c24to32
Unexecuted instantiation: chacha.c:c24to32
Unexecuted instantiation: ecc.c:c24to32
Unexecuted instantiation: wc_mlkem.c:c24to32
Unexecuted instantiation: wc_mlkem_poly.c:c24to32
Unexecuted instantiation: internal.c:c24to32
Unexecuted instantiation: keys.c:c24to32
Unexecuted instantiation: wc_encrypt.c:c24to32
Unexecuted instantiation: pwdbased.c:c24to32
947
948
949
/* convert opaque to 24 bit integer */
950
WC_MISC_STATIC WC_INLINE void ato24(const byte* c, word32* wc_u24)
951
0
{
952
0
    *wc_u24 = ((word32)c[0] << 16) | ((word32)c[1] << 8) | c[2];
953
0
}
Unexecuted instantiation: ssl.c:ato24
Unexecuted instantiation: tls.c:ato24
Unexecuted instantiation: tls13.c:ato24
Unexecuted instantiation: hmac.c:ato24
Unexecuted instantiation: hash.c:ato24
Unexecuted instantiation: kdf.c:ato24
Unexecuted instantiation: random.c:ato24
Unexecuted instantiation: sha256.c:ato24
Unexecuted instantiation: rsa.c:ato24
Unexecuted instantiation: sp_int.c:ato24
Unexecuted instantiation: aes.c:ato24
Unexecuted instantiation: sha.c:ato24
Unexecuted instantiation: sha512.c:ato24
Unexecuted instantiation: sha3.c:ato24
Unexecuted instantiation: wolfmath.c:ato24
Unexecuted instantiation: memory.c:ato24
Unexecuted instantiation: dh.c:ato24
Unexecuted instantiation: asn.c:ato24
Unexecuted instantiation: coding.c:ato24
Unexecuted instantiation: poly1305.c:ato24
Unexecuted instantiation: chacha.c:ato24
Unexecuted instantiation: ecc.c:ato24
Unexecuted instantiation: wc_mlkem.c:ato24
Unexecuted instantiation: wc_mlkem_poly.c:ato24
Unexecuted instantiation: internal.c:ato24
Unexecuted instantiation: keys.c:ato24
Unexecuted instantiation: wc_encrypt.c:ato24
Unexecuted instantiation: pwdbased.c:ato24
954
955
/* convert opaque to 16 bit integer */
956
WC_MISC_STATIC WC_INLINE void ato16(const byte* c, word16* wc_u16)
957
0
{
958
0
    *wc_u16 = (word16) ((c[0] << 8) | (c[1]));
959
0
}
Unexecuted instantiation: ssl.c:ato16
Unexecuted instantiation: tls.c:ato16
Unexecuted instantiation: tls13.c:ato16
Unexecuted instantiation: hmac.c:ato16
Unexecuted instantiation: hash.c:ato16
Unexecuted instantiation: kdf.c:ato16
Unexecuted instantiation: random.c:ato16
Unexecuted instantiation: sha256.c:ato16
Unexecuted instantiation: rsa.c:ato16
Unexecuted instantiation: sp_int.c:ato16
Unexecuted instantiation: aes.c:ato16
Unexecuted instantiation: sha.c:ato16
Unexecuted instantiation: sha512.c:ato16
Unexecuted instantiation: sha3.c:ato16
Unexecuted instantiation: wolfmath.c:ato16
Unexecuted instantiation: memory.c:ato16
Unexecuted instantiation: dh.c:ato16
Unexecuted instantiation: asn.c:ato16
Unexecuted instantiation: coding.c:ato16
Unexecuted instantiation: poly1305.c:ato16
Unexecuted instantiation: chacha.c:ato16
Unexecuted instantiation: ecc.c:ato16
Unexecuted instantiation: wc_mlkem.c:ato16
Unexecuted instantiation: wc_mlkem_poly.c:ato16
Unexecuted instantiation: internal.c:ato16
Unexecuted instantiation: keys.c:ato16
Unexecuted instantiation: wc_encrypt.c:ato16
Unexecuted instantiation: pwdbased.c:ato16
960
961
/* convert opaque to 32 bit integer */
962
WC_MISC_STATIC WC_INLINE void ato32(const byte* c, word32* wc_u32)
963
0
{
964
0
#ifdef WOLFSSL_USE_ALIGN
965
0
    *wc_u32 = ((word32)c[0] << 24) |
966
0
              ((word32)c[1] << 16) |
967
0
              ((word32)c[2] << 8) |
968
0
               (word32)c[3];
969
0
#elif defined(LITTLE_ENDIAN_ORDER)
970
0
    *wc_u32 = ByteReverseWord32(*(word32*)c);
971
0
#else
972
0
    *wc_u32 = *(word32*)c;
973
0
#endif
974
0
}
Unexecuted instantiation: ssl.c:ato32
Unexecuted instantiation: tls.c:ato32
Unexecuted instantiation: tls13.c:ato32
Unexecuted instantiation: hmac.c:ato32
Unexecuted instantiation: hash.c:ato32
Unexecuted instantiation: kdf.c:ato32
Unexecuted instantiation: random.c:ato32
Unexecuted instantiation: sha256.c:ato32
Unexecuted instantiation: rsa.c:ato32
Unexecuted instantiation: sp_int.c:ato32
Unexecuted instantiation: aes.c:ato32
Unexecuted instantiation: sha.c:ato32
Unexecuted instantiation: sha512.c:ato32
Unexecuted instantiation: sha3.c:ato32
Unexecuted instantiation: wolfmath.c:ato32
Unexecuted instantiation: memory.c:ato32
Unexecuted instantiation: dh.c:ato32
Unexecuted instantiation: asn.c:ato32
Unexecuted instantiation: coding.c:ato32
Unexecuted instantiation: poly1305.c:ato32
Unexecuted instantiation: chacha.c:ato32
Unexecuted instantiation: ecc.c:ato32
Unexecuted instantiation: wc_mlkem.c:ato32
Unexecuted instantiation: wc_mlkem_poly.c:ato32
Unexecuted instantiation: internal.c:ato32
Unexecuted instantiation: keys.c:ato32
Unexecuted instantiation: wc_encrypt.c:ato32
Unexecuted instantiation: pwdbased.c:ato32
975
976
/* convert opaque to 32 bit integer. Interpret as little endian. */
977
WC_MISC_STATIC WC_INLINE void ato32le(const byte* c, word32* wc_u32)
978
0
{
979
0
    *wc_u32 =  (word32)c[0] |
980
0
              ((word32)c[1] << 8) |
981
0
              ((word32)c[2] << 16) |
982
0
              ((word32)c[3] << 24);
983
0
}
Unexecuted instantiation: ssl.c:ato32le
Unexecuted instantiation: tls.c:ato32le
Unexecuted instantiation: tls13.c:ato32le
Unexecuted instantiation: hmac.c:ato32le
Unexecuted instantiation: hash.c:ato32le
Unexecuted instantiation: kdf.c:ato32le
Unexecuted instantiation: random.c:ato32le
Unexecuted instantiation: sha256.c:ato32le
Unexecuted instantiation: rsa.c:ato32le
Unexecuted instantiation: sp_int.c:ato32le
Unexecuted instantiation: aes.c:ato32le
Unexecuted instantiation: sha.c:ato32le
Unexecuted instantiation: sha512.c:ato32le
Unexecuted instantiation: sha3.c:ato32le
Unexecuted instantiation: wolfmath.c:ato32le
Unexecuted instantiation: memory.c:ato32le
Unexecuted instantiation: dh.c:ato32le
Unexecuted instantiation: asn.c:ato32le
Unexecuted instantiation: coding.c:ato32le
Unexecuted instantiation: poly1305.c:ato32le
Unexecuted instantiation: chacha.c:ato32le
Unexecuted instantiation: ecc.c:ato32le
Unexecuted instantiation: wc_mlkem.c:ato32le
Unexecuted instantiation: wc_mlkem_poly.c:ato32le
Unexecuted instantiation: internal.c:ato32le
Unexecuted instantiation: keys.c:ato32le
Unexecuted instantiation: wc_encrypt.c:ato32le
Unexecuted instantiation: pwdbased.c:ato32le
984
985
986
WC_MISC_STATIC WC_INLINE word32 btoi(byte b)
987
0
{
988
0
    return (word32)(b - 0x30);
989
0
}
Unexecuted instantiation: ssl.c:btoi
Unexecuted instantiation: tls.c:btoi
Unexecuted instantiation: tls13.c:btoi
Unexecuted instantiation: hmac.c:btoi
Unexecuted instantiation: hash.c:btoi
Unexecuted instantiation: kdf.c:btoi
Unexecuted instantiation: random.c:btoi
Unexecuted instantiation: sha256.c:btoi
Unexecuted instantiation: rsa.c:btoi
Unexecuted instantiation: sp_int.c:btoi
Unexecuted instantiation: aes.c:btoi
Unexecuted instantiation: sha.c:btoi
Unexecuted instantiation: sha512.c:btoi
Unexecuted instantiation: sha3.c:btoi
Unexecuted instantiation: wolfmath.c:btoi
Unexecuted instantiation: memory.c:btoi
Unexecuted instantiation: dh.c:btoi
Unexecuted instantiation: asn.c:btoi
Unexecuted instantiation: coding.c:btoi
Unexecuted instantiation: poly1305.c:btoi
Unexecuted instantiation: chacha.c:btoi
Unexecuted instantiation: ecc.c:btoi
Unexecuted instantiation: wc_mlkem.c:btoi
Unexecuted instantiation: wc_mlkem_poly.c:btoi
Unexecuted instantiation: internal.c:btoi
Unexecuted instantiation: keys.c:btoi
Unexecuted instantiation: wc_encrypt.c:btoi
Unexecuted instantiation: pwdbased.c:btoi
990
#endif
991
992
WC_MISC_STATIC WC_INLINE signed char HexCharToByte(char ch)
993
0
{
994
0
    signed char ret = (signed char)ch;
995
0
    if (ret >= '0' && ret <= '9')
996
0
        ret = (signed char)(ret - '0');
997
0
    else if (ret >= 'A' && ret <= 'F')
998
0
        ret = (signed char)(ret - ('A' - 10));
999
0
    else if (ret >= 'a' && ret <= 'f')
1000
0
        ret = (signed char)(ret - ('a' - 10));
1001
0
    else
1002
0
        ret = -1; /* error case - return code must be signed */
1003
0
    return ret;
1004
0
}
Unexecuted instantiation: ssl.c:HexCharToByte
Unexecuted instantiation: tls.c:HexCharToByte
Unexecuted instantiation: tls13.c:HexCharToByte
Unexecuted instantiation: hmac.c:HexCharToByte
Unexecuted instantiation: hash.c:HexCharToByte
Unexecuted instantiation: kdf.c:HexCharToByte
Unexecuted instantiation: random.c:HexCharToByte
Unexecuted instantiation: sha256.c:HexCharToByte
Unexecuted instantiation: rsa.c:HexCharToByte
Unexecuted instantiation: sp_int.c:HexCharToByte
Unexecuted instantiation: aes.c:HexCharToByte
Unexecuted instantiation: sha.c:HexCharToByte
Unexecuted instantiation: sha512.c:HexCharToByte
Unexecuted instantiation: sha3.c:HexCharToByte
Unexecuted instantiation: wolfmath.c:HexCharToByte
Unexecuted instantiation: memory.c:HexCharToByte
Unexecuted instantiation: dh.c:HexCharToByte
Unexecuted instantiation: asn.c:HexCharToByte
Unexecuted instantiation: coding.c:HexCharToByte
Unexecuted instantiation: poly1305.c:HexCharToByte
Unexecuted instantiation: chacha.c:HexCharToByte
Unexecuted instantiation: ecc.c:HexCharToByte
Unexecuted instantiation: wc_mlkem.c:HexCharToByte
Unexecuted instantiation: wc_mlkem_poly.c:HexCharToByte
Unexecuted instantiation: internal.c:HexCharToByte
Unexecuted instantiation: keys.c:HexCharToByte
Unexecuted instantiation: wc_encrypt.c:HexCharToByte
Unexecuted instantiation: pwdbased.c:HexCharToByte
1005
1006
WC_MISC_STATIC WC_INLINE char ByteToHex(byte in)
1007
0
{
1008
0
    static ALIGN64 const char kHexChar[] = {
1009
0
        '0', '1', '2', '3', '4', '5', '6', '7',
1010
0
        '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
1011
0
    };
1012
0
    return (char)(kHexChar[in & 0xF]);
1013
0
}
Unexecuted instantiation: ssl.c:ByteToHex
Unexecuted instantiation: tls.c:ByteToHex
Unexecuted instantiation: tls13.c:ByteToHex
Unexecuted instantiation: hmac.c:ByteToHex
Unexecuted instantiation: hash.c:ByteToHex
Unexecuted instantiation: kdf.c:ByteToHex
Unexecuted instantiation: random.c:ByteToHex
Unexecuted instantiation: sha256.c:ByteToHex
Unexecuted instantiation: rsa.c:ByteToHex
Unexecuted instantiation: sp_int.c:ByteToHex
Unexecuted instantiation: aes.c:ByteToHex
Unexecuted instantiation: sha.c:ByteToHex
Unexecuted instantiation: sha512.c:ByteToHex
Unexecuted instantiation: sha3.c:ByteToHex
Unexecuted instantiation: wolfmath.c:ByteToHex
Unexecuted instantiation: memory.c:ByteToHex
Unexecuted instantiation: dh.c:ByteToHex
Unexecuted instantiation: asn.c:ByteToHex
Unexecuted instantiation: coding.c:ByteToHex
Unexecuted instantiation: poly1305.c:ByteToHex
Unexecuted instantiation: chacha.c:ByteToHex
Unexecuted instantiation: ecc.c:ByteToHex
Unexecuted instantiation: wc_mlkem.c:ByteToHex
Unexecuted instantiation: wc_mlkem_poly.c:ByteToHex
Unexecuted instantiation: internal.c:ByteToHex
Unexecuted instantiation: keys.c:ByteToHex
Unexecuted instantiation: wc_encrypt.c:ByteToHex
Unexecuted instantiation: pwdbased.c:ByteToHex
1014
1015
WC_MISC_STATIC WC_INLINE int ByteToHexStr(byte in, char* out)
1016
0
{
1017
0
    if (out == NULL)
1018
0
        return -1;
1019
0
1020
0
    out[0] = ByteToHex((byte)(in >> 4));
1021
0
    out[1] = ByteToHex((byte)(in & 0xf));
1022
0
    return 0;
1023
0
}
Unexecuted instantiation: ssl.c:ByteToHexStr
Unexecuted instantiation: tls.c:ByteToHexStr
Unexecuted instantiation: tls13.c:ByteToHexStr
Unexecuted instantiation: hmac.c:ByteToHexStr
Unexecuted instantiation: hash.c:ByteToHexStr
Unexecuted instantiation: kdf.c:ByteToHexStr
Unexecuted instantiation: random.c:ByteToHexStr
Unexecuted instantiation: sha256.c:ByteToHexStr
Unexecuted instantiation: rsa.c:ByteToHexStr
Unexecuted instantiation: sp_int.c:ByteToHexStr
Unexecuted instantiation: aes.c:ByteToHexStr
Unexecuted instantiation: sha.c:ByteToHexStr
Unexecuted instantiation: sha512.c:ByteToHexStr
Unexecuted instantiation: sha3.c:ByteToHexStr
Unexecuted instantiation: wolfmath.c:ByteToHexStr
Unexecuted instantiation: memory.c:ByteToHexStr
Unexecuted instantiation: dh.c:ByteToHexStr
Unexecuted instantiation: asn.c:ByteToHexStr
Unexecuted instantiation: coding.c:ByteToHexStr
Unexecuted instantiation: poly1305.c:ByteToHexStr
Unexecuted instantiation: chacha.c:ByteToHexStr
Unexecuted instantiation: ecc.c:ByteToHexStr
Unexecuted instantiation: wc_mlkem.c:ByteToHexStr
Unexecuted instantiation: wc_mlkem_poly.c:ByteToHexStr
Unexecuted instantiation: internal.c:ByteToHexStr
Unexecuted instantiation: keys.c:ByteToHexStr
Unexecuted instantiation: wc_encrypt.c:ByteToHexStr
Unexecuted instantiation: pwdbased.c:ByteToHexStr
1024
1025
WC_MISC_STATIC WC_INLINE int CharIsWhiteSpace(char ch)
1026
0
{
1027
0
#ifndef WOLFSSL_NO_CT_OPS
1028
0
    return (ctMaskEq(ch, ' ') |
1029
0
            ctMaskEq(ch, '\t') |
1030
0
            ctMaskEq(ch, '\n')) & 1;
1031
#else /* WOLFSSL_NO_CT_OPS */
1032
    switch (ch) {
1033
        case ' ':
1034
        case '\t':
1035
        case '\n':
1036
            return 1;
1037
        default:
1038
            return 0;
1039
    }
1040
#endif /* WOLFSSL_NO_CT_OPS */
1041
0
}
Unexecuted instantiation: ssl.c:CharIsWhiteSpace
Unexecuted instantiation: tls.c:CharIsWhiteSpace
Unexecuted instantiation: tls13.c:CharIsWhiteSpace
Unexecuted instantiation: hmac.c:CharIsWhiteSpace
Unexecuted instantiation: hash.c:CharIsWhiteSpace
Unexecuted instantiation: kdf.c:CharIsWhiteSpace
Unexecuted instantiation: random.c:CharIsWhiteSpace
Unexecuted instantiation: sha256.c:CharIsWhiteSpace
Unexecuted instantiation: rsa.c:CharIsWhiteSpace
Unexecuted instantiation: sp_int.c:CharIsWhiteSpace
Unexecuted instantiation: aes.c:CharIsWhiteSpace
Unexecuted instantiation: sha.c:CharIsWhiteSpace
Unexecuted instantiation: sha512.c:CharIsWhiteSpace
Unexecuted instantiation: sha3.c:CharIsWhiteSpace
Unexecuted instantiation: wolfmath.c:CharIsWhiteSpace
Unexecuted instantiation: memory.c:CharIsWhiteSpace
Unexecuted instantiation: dh.c:CharIsWhiteSpace
Unexecuted instantiation: asn.c:CharIsWhiteSpace
Unexecuted instantiation: coding.c:CharIsWhiteSpace
Unexecuted instantiation: poly1305.c:CharIsWhiteSpace
Unexecuted instantiation: chacha.c:CharIsWhiteSpace
Unexecuted instantiation: ecc.c:CharIsWhiteSpace
Unexecuted instantiation: wc_mlkem.c:CharIsWhiteSpace
Unexecuted instantiation: wc_mlkem_poly.c:CharIsWhiteSpace
Unexecuted instantiation: internal.c:CharIsWhiteSpace
Unexecuted instantiation: keys.c:CharIsWhiteSpace
Unexecuted instantiation: wc_encrypt.c:CharIsWhiteSpace
Unexecuted instantiation: pwdbased.c:CharIsWhiteSpace
1042
1043
#if defined(WOLFSSL_W64_WRAPPER)
1044
#if defined(WORD64_AVAILABLE) && !defined(WOLFSSL_W64_WRAPPER_TEST)
1045
0
WC_MISC_STATIC WC_INLINE void w64Increment(w64wrapper *n) {
1046
0
    n->n++;
1047
0
}
Unexecuted instantiation: ssl.c:w64Increment
Unexecuted instantiation: tls.c:w64Increment
Unexecuted instantiation: tls13.c:w64Increment
Unexecuted instantiation: hmac.c:w64Increment
Unexecuted instantiation: hash.c:w64Increment
Unexecuted instantiation: kdf.c:w64Increment
Unexecuted instantiation: random.c:w64Increment
Unexecuted instantiation: sha256.c:w64Increment
Unexecuted instantiation: rsa.c:w64Increment
Unexecuted instantiation: sp_int.c:w64Increment
Unexecuted instantiation: aes.c:w64Increment
Unexecuted instantiation: sha.c:w64Increment
Unexecuted instantiation: sha512.c:w64Increment
Unexecuted instantiation: sha3.c:w64Increment
Unexecuted instantiation: wolfmath.c:w64Increment
Unexecuted instantiation: memory.c:w64Increment
Unexecuted instantiation: dh.c:w64Increment
Unexecuted instantiation: asn.c:w64Increment
Unexecuted instantiation: coding.c:w64Increment
Unexecuted instantiation: poly1305.c:w64Increment
Unexecuted instantiation: chacha.c:w64Increment
Unexecuted instantiation: ecc.c:w64Increment
Unexecuted instantiation: wc_mlkem.c:w64Increment
Unexecuted instantiation: wc_mlkem_poly.c:w64Increment
Unexecuted instantiation: internal.c:w64Increment
Unexecuted instantiation: keys.c:w64Increment
Unexecuted instantiation: wc_encrypt.c:w64Increment
Unexecuted instantiation: pwdbased.c:w64Increment
1048
1049
0
WC_MISC_STATIC WC_INLINE void w64Decrement(w64wrapper *n) {
1050
0
    n->n--;
1051
0
}
Unexecuted instantiation: ssl.c:w64Decrement
Unexecuted instantiation: tls.c:w64Decrement
Unexecuted instantiation: tls13.c:w64Decrement
Unexecuted instantiation: hmac.c:w64Decrement
Unexecuted instantiation: hash.c:w64Decrement
Unexecuted instantiation: kdf.c:w64Decrement
Unexecuted instantiation: random.c:w64Decrement
Unexecuted instantiation: sha256.c:w64Decrement
Unexecuted instantiation: rsa.c:w64Decrement
Unexecuted instantiation: sp_int.c:w64Decrement
Unexecuted instantiation: aes.c:w64Decrement
Unexecuted instantiation: sha.c:w64Decrement
Unexecuted instantiation: sha512.c:w64Decrement
Unexecuted instantiation: sha3.c:w64Decrement
Unexecuted instantiation: wolfmath.c:w64Decrement
Unexecuted instantiation: memory.c:w64Decrement
Unexecuted instantiation: dh.c:w64Decrement
Unexecuted instantiation: asn.c:w64Decrement
Unexecuted instantiation: coding.c:w64Decrement
Unexecuted instantiation: poly1305.c:w64Decrement
Unexecuted instantiation: chacha.c:w64Decrement
Unexecuted instantiation: ecc.c:w64Decrement
Unexecuted instantiation: wc_mlkem.c:w64Decrement
Unexecuted instantiation: wc_mlkem_poly.c:w64Decrement
Unexecuted instantiation: internal.c:w64Decrement
Unexecuted instantiation: keys.c:w64Decrement
Unexecuted instantiation: wc_encrypt.c:w64Decrement
Unexecuted instantiation: pwdbased.c:w64Decrement
1052
1053
0
WC_MISC_STATIC WC_INLINE byte w64Equal(w64wrapper a, w64wrapper b) {
1054
0
    return (a.n == b.n);
1055
0
}
Unexecuted instantiation: ssl.c:w64Equal
Unexecuted instantiation: tls.c:w64Equal
Unexecuted instantiation: tls13.c:w64Equal
Unexecuted instantiation: hmac.c:w64Equal
Unexecuted instantiation: hash.c:w64Equal
Unexecuted instantiation: kdf.c:w64Equal
Unexecuted instantiation: random.c:w64Equal
Unexecuted instantiation: sha256.c:w64Equal
Unexecuted instantiation: rsa.c:w64Equal
Unexecuted instantiation: sp_int.c:w64Equal
Unexecuted instantiation: aes.c:w64Equal
Unexecuted instantiation: sha.c:w64Equal
Unexecuted instantiation: sha512.c:w64Equal
Unexecuted instantiation: sha3.c:w64Equal
Unexecuted instantiation: wolfmath.c:w64Equal
Unexecuted instantiation: memory.c:w64Equal
Unexecuted instantiation: dh.c:w64Equal
Unexecuted instantiation: asn.c:w64Equal
Unexecuted instantiation: coding.c:w64Equal
Unexecuted instantiation: poly1305.c:w64Equal
Unexecuted instantiation: chacha.c:w64Equal
Unexecuted instantiation: ecc.c:w64Equal
Unexecuted instantiation: wc_mlkem.c:w64Equal
Unexecuted instantiation: wc_mlkem_poly.c:w64Equal
Unexecuted instantiation: internal.c:w64Equal
Unexecuted instantiation: keys.c:w64Equal
Unexecuted instantiation: wc_encrypt.c:w64Equal
Unexecuted instantiation: pwdbased.c:w64Equal
1056
1057
0
WC_MISC_STATIC WC_INLINE word32 w64GetLow32(w64wrapper n) {
1058
0
    return (word32)n.n;
1059
0
}
Unexecuted instantiation: ssl.c:w64GetLow32
Unexecuted instantiation: tls.c:w64GetLow32
Unexecuted instantiation: tls13.c:w64GetLow32
Unexecuted instantiation: hmac.c:w64GetLow32
Unexecuted instantiation: hash.c:w64GetLow32
Unexecuted instantiation: kdf.c:w64GetLow32
Unexecuted instantiation: random.c:w64GetLow32
Unexecuted instantiation: sha256.c:w64GetLow32
Unexecuted instantiation: rsa.c:w64GetLow32
Unexecuted instantiation: sp_int.c:w64GetLow32
Unexecuted instantiation: aes.c:w64GetLow32
Unexecuted instantiation: sha.c:w64GetLow32
Unexecuted instantiation: sha512.c:w64GetLow32
Unexecuted instantiation: sha3.c:w64GetLow32
Unexecuted instantiation: wolfmath.c:w64GetLow32
Unexecuted instantiation: memory.c:w64GetLow32
Unexecuted instantiation: dh.c:w64GetLow32
Unexecuted instantiation: asn.c:w64GetLow32
Unexecuted instantiation: coding.c:w64GetLow32
Unexecuted instantiation: poly1305.c:w64GetLow32
Unexecuted instantiation: chacha.c:w64GetLow32
Unexecuted instantiation: ecc.c:w64GetLow32
Unexecuted instantiation: wc_mlkem.c:w64GetLow32
Unexecuted instantiation: wc_mlkem_poly.c:w64GetLow32
Unexecuted instantiation: internal.c:w64GetLow32
Unexecuted instantiation: keys.c:w64GetLow32
Unexecuted instantiation: wc_encrypt.c:w64GetLow32
Unexecuted instantiation: pwdbased.c:w64GetLow32
1060
1061
0
WC_MISC_STATIC WC_INLINE word32 w64GetHigh32(w64wrapper n) {
1062
0
    return (word32)(n.n >> 32);
1063
0
}
Unexecuted instantiation: ssl.c:w64GetHigh32
Unexecuted instantiation: tls.c:w64GetHigh32
Unexecuted instantiation: tls13.c:w64GetHigh32
Unexecuted instantiation: hmac.c:w64GetHigh32
Unexecuted instantiation: hash.c:w64GetHigh32
Unexecuted instantiation: kdf.c:w64GetHigh32
Unexecuted instantiation: random.c:w64GetHigh32
Unexecuted instantiation: sha256.c:w64GetHigh32
Unexecuted instantiation: rsa.c:w64GetHigh32
Unexecuted instantiation: sp_int.c:w64GetHigh32
Unexecuted instantiation: aes.c:w64GetHigh32
Unexecuted instantiation: sha.c:w64GetHigh32
Unexecuted instantiation: sha512.c:w64GetHigh32
Unexecuted instantiation: sha3.c:w64GetHigh32
Unexecuted instantiation: wolfmath.c:w64GetHigh32
Unexecuted instantiation: memory.c:w64GetHigh32
Unexecuted instantiation: dh.c:w64GetHigh32
Unexecuted instantiation: asn.c:w64GetHigh32
Unexecuted instantiation: coding.c:w64GetHigh32
Unexecuted instantiation: poly1305.c:w64GetHigh32
Unexecuted instantiation: chacha.c:w64GetHigh32
Unexecuted instantiation: ecc.c:w64GetHigh32
Unexecuted instantiation: wc_mlkem.c:w64GetHigh32
Unexecuted instantiation: wc_mlkem_poly.c:w64GetHigh32
Unexecuted instantiation: internal.c:w64GetHigh32
Unexecuted instantiation: keys.c:w64GetHigh32
Unexecuted instantiation: wc_encrypt.c:w64GetHigh32
Unexecuted instantiation: pwdbased.c:w64GetHigh32
1064
1065
0
WC_MISC_STATIC WC_INLINE void w64SetLow32(w64wrapper *n, word32 low) {
1066
0
    n->n = (n->n & (~(word64)(0xffffffff))) | low;
1067
0
}
Unexecuted instantiation: ssl.c:w64SetLow32
Unexecuted instantiation: tls.c:w64SetLow32
Unexecuted instantiation: tls13.c:w64SetLow32
Unexecuted instantiation: hmac.c:w64SetLow32
Unexecuted instantiation: hash.c:w64SetLow32
Unexecuted instantiation: kdf.c:w64SetLow32
Unexecuted instantiation: random.c:w64SetLow32
Unexecuted instantiation: sha256.c:w64SetLow32
Unexecuted instantiation: rsa.c:w64SetLow32
Unexecuted instantiation: sp_int.c:w64SetLow32
Unexecuted instantiation: aes.c:w64SetLow32
Unexecuted instantiation: sha.c:w64SetLow32
Unexecuted instantiation: sha512.c:w64SetLow32
Unexecuted instantiation: sha3.c:w64SetLow32
Unexecuted instantiation: wolfmath.c:w64SetLow32
Unexecuted instantiation: memory.c:w64SetLow32
Unexecuted instantiation: dh.c:w64SetLow32
Unexecuted instantiation: asn.c:w64SetLow32
Unexecuted instantiation: coding.c:w64SetLow32
Unexecuted instantiation: poly1305.c:w64SetLow32
Unexecuted instantiation: chacha.c:w64SetLow32
Unexecuted instantiation: ecc.c:w64SetLow32
Unexecuted instantiation: wc_mlkem.c:w64SetLow32
Unexecuted instantiation: wc_mlkem_poly.c:w64SetLow32
Unexecuted instantiation: internal.c:w64SetLow32
Unexecuted instantiation: keys.c:w64SetLow32
Unexecuted instantiation: wc_encrypt.c:w64SetLow32
Unexecuted instantiation: pwdbased.c:w64SetLow32
1068
1069
WC_MISC_STATIC WC_INLINE w64wrapper w64Add32(w64wrapper a, word32 b, byte *wrap)
1070
0
{
1071
0
    a.n += b;
1072
0
    if (a.n < b && wrap != NULL)
1073
0
        *wrap = 1;
1074
0
1075
0
    return a;
1076
0
}
Unexecuted instantiation: ssl.c:w64Add32
Unexecuted instantiation: tls.c:w64Add32
Unexecuted instantiation: tls13.c:w64Add32
Unexecuted instantiation: hmac.c:w64Add32
Unexecuted instantiation: hash.c:w64Add32
Unexecuted instantiation: kdf.c:w64Add32
Unexecuted instantiation: random.c:w64Add32
Unexecuted instantiation: sha256.c:w64Add32
Unexecuted instantiation: rsa.c:w64Add32
Unexecuted instantiation: sp_int.c:w64Add32
Unexecuted instantiation: aes.c:w64Add32
Unexecuted instantiation: sha.c:w64Add32
Unexecuted instantiation: sha512.c:w64Add32
Unexecuted instantiation: sha3.c:w64Add32
Unexecuted instantiation: wolfmath.c:w64Add32
Unexecuted instantiation: memory.c:w64Add32
Unexecuted instantiation: dh.c:w64Add32
Unexecuted instantiation: asn.c:w64Add32
Unexecuted instantiation: coding.c:w64Add32
Unexecuted instantiation: poly1305.c:w64Add32
Unexecuted instantiation: chacha.c:w64Add32
Unexecuted instantiation: ecc.c:w64Add32
Unexecuted instantiation: wc_mlkem.c:w64Add32
Unexecuted instantiation: wc_mlkem_poly.c:w64Add32
Unexecuted instantiation: internal.c:w64Add32
Unexecuted instantiation: keys.c:w64Add32
Unexecuted instantiation: wc_encrypt.c:w64Add32
Unexecuted instantiation: pwdbased.c:w64Add32
1077
1078
WC_MISC_STATIC WC_INLINE w64wrapper w64Add(w64wrapper a, w64wrapper b,
1079
    byte *wrap)
1080
0
{
1081
0
    a.n += b.n;
1082
0
    if (a.n < b.n && wrap != NULL)
1083
0
        *wrap = 1;
1084
0
1085
0
    return a;
1086
0
}
Unexecuted instantiation: ssl.c:w64Add
Unexecuted instantiation: tls.c:w64Add
Unexecuted instantiation: tls13.c:w64Add
Unexecuted instantiation: hmac.c:w64Add
Unexecuted instantiation: hash.c:w64Add
Unexecuted instantiation: kdf.c:w64Add
Unexecuted instantiation: random.c:w64Add
Unexecuted instantiation: sha256.c:w64Add
Unexecuted instantiation: rsa.c:w64Add
Unexecuted instantiation: sp_int.c:w64Add
Unexecuted instantiation: aes.c:w64Add
Unexecuted instantiation: sha.c:w64Add
Unexecuted instantiation: sha512.c:w64Add
Unexecuted instantiation: sha3.c:w64Add
Unexecuted instantiation: wolfmath.c:w64Add
Unexecuted instantiation: memory.c:w64Add
Unexecuted instantiation: dh.c:w64Add
Unexecuted instantiation: asn.c:w64Add
Unexecuted instantiation: coding.c:w64Add
Unexecuted instantiation: poly1305.c:w64Add
Unexecuted instantiation: chacha.c:w64Add
Unexecuted instantiation: ecc.c:w64Add
Unexecuted instantiation: wc_mlkem.c:w64Add
Unexecuted instantiation: wc_mlkem_poly.c:w64Add
Unexecuted instantiation: internal.c:w64Add
Unexecuted instantiation: keys.c:w64Add
Unexecuted instantiation: wc_encrypt.c:w64Add
Unexecuted instantiation: pwdbased.c:w64Add
1087
1088
WC_MISC_STATIC WC_INLINE w64wrapper w64Sub32(w64wrapper a, word32 b, byte *wrap)
1089
0
{
1090
0
    if (a.n < b && wrap != NULL)
1091
0
        *wrap = 1;
1092
0
    a.n = a.n - b;
1093
0
    return a;
1094
0
}
Unexecuted instantiation: ssl.c:w64Sub32
Unexecuted instantiation: tls.c:w64Sub32
Unexecuted instantiation: tls13.c:w64Sub32
Unexecuted instantiation: hmac.c:w64Sub32
Unexecuted instantiation: hash.c:w64Sub32
Unexecuted instantiation: kdf.c:w64Sub32
Unexecuted instantiation: random.c:w64Sub32
Unexecuted instantiation: sha256.c:w64Sub32
Unexecuted instantiation: rsa.c:w64Sub32
Unexecuted instantiation: sp_int.c:w64Sub32
Unexecuted instantiation: aes.c:w64Sub32
Unexecuted instantiation: sha.c:w64Sub32
Unexecuted instantiation: sha512.c:w64Sub32
Unexecuted instantiation: sha3.c:w64Sub32
Unexecuted instantiation: wolfmath.c:w64Sub32
Unexecuted instantiation: memory.c:w64Sub32
Unexecuted instantiation: dh.c:w64Sub32
Unexecuted instantiation: asn.c:w64Sub32
Unexecuted instantiation: coding.c:w64Sub32
Unexecuted instantiation: poly1305.c:w64Sub32
Unexecuted instantiation: chacha.c:w64Sub32
Unexecuted instantiation: ecc.c:w64Sub32
Unexecuted instantiation: wc_mlkem.c:w64Sub32
Unexecuted instantiation: wc_mlkem_poly.c:w64Sub32
Unexecuted instantiation: internal.c:w64Sub32
Unexecuted instantiation: keys.c:w64Sub32
Unexecuted instantiation: wc_encrypt.c:w64Sub32
Unexecuted instantiation: pwdbased.c:w64Sub32
1095
1096
WC_MISC_STATIC WC_INLINE byte w64GT(w64wrapper a, w64wrapper b)
1097
0
{
1098
0
    return a.n > b.n;
1099
0
}
Unexecuted instantiation: ssl.c:w64GT
Unexecuted instantiation: tls.c:w64GT
Unexecuted instantiation: tls13.c:w64GT
Unexecuted instantiation: hmac.c:w64GT
Unexecuted instantiation: hash.c:w64GT
Unexecuted instantiation: kdf.c:w64GT
Unexecuted instantiation: random.c:w64GT
Unexecuted instantiation: sha256.c:w64GT
Unexecuted instantiation: rsa.c:w64GT
Unexecuted instantiation: sp_int.c:w64GT
Unexecuted instantiation: aes.c:w64GT
Unexecuted instantiation: sha.c:w64GT
Unexecuted instantiation: sha512.c:w64GT
Unexecuted instantiation: sha3.c:w64GT
Unexecuted instantiation: wolfmath.c:w64GT
Unexecuted instantiation: memory.c:w64GT
Unexecuted instantiation: dh.c:w64GT
Unexecuted instantiation: asn.c:w64GT
Unexecuted instantiation: coding.c:w64GT
Unexecuted instantiation: poly1305.c:w64GT
Unexecuted instantiation: chacha.c:w64GT
Unexecuted instantiation: ecc.c:w64GT
Unexecuted instantiation: wc_mlkem.c:w64GT
Unexecuted instantiation: wc_mlkem_poly.c:w64GT
Unexecuted instantiation: internal.c:w64GT
Unexecuted instantiation: keys.c:w64GT
Unexecuted instantiation: wc_encrypt.c:w64GT
Unexecuted instantiation: pwdbased.c:w64GT
1100
1101
WC_MISC_STATIC WC_INLINE byte w64IsZero(w64wrapper a)
1102
0
{
1103
0
    return a.n == 0;
1104
0
}
Unexecuted instantiation: ssl.c:w64IsZero
Unexecuted instantiation: tls.c:w64IsZero
Unexecuted instantiation: tls13.c:w64IsZero
Unexecuted instantiation: hmac.c:w64IsZero
Unexecuted instantiation: hash.c:w64IsZero
Unexecuted instantiation: kdf.c:w64IsZero
Unexecuted instantiation: random.c:w64IsZero
Unexecuted instantiation: sha256.c:w64IsZero
Unexecuted instantiation: rsa.c:w64IsZero
Unexecuted instantiation: sp_int.c:w64IsZero
Unexecuted instantiation: aes.c:w64IsZero
Unexecuted instantiation: sha.c:w64IsZero
Unexecuted instantiation: sha512.c:w64IsZero
Unexecuted instantiation: sha3.c:w64IsZero
Unexecuted instantiation: wolfmath.c:w64IsZero
Unexecuted instantiation: memory.c:w64IsZero
Unexecuted instantiation: dh.c:w64IsZero
Unexecuted instantiation: asn.c:w64IsZero
Unexecuted instantiation: coding.c:w64IsZero
Unexecuted instantiation: poly1305.c:w64IsZero
Unexecuted instantiation: chacha.c:w64IsZero
Unexecuted instantiation: ecc.c:w64IsZero
Unexecuted instantiation: wc_mlkem.c:w64IsZero
Unexecuted instantiation: wc_mlkem_poly.c:w64IsZero
Unexecuted instantiation: internal.c:w64IsZero
Unexecuted instantiation: keys.c:w64IsZero
Unexecuted instantiation: wc_encrypt.c:w64IsZero
Unexecuted instantiation: pwdbased.c:w64IsZero
1105
1106
WC_MISC_STATIC WC_INLINE void c64toa(const w64wrapper *a, byte *out)
1107
0
{
1108
0
#ifdef BIG_ENDIAN_ORDER
1109
0
    XMEMCPY(out, &a->n, sizeof(a->n));
1110
0
#else
1111
0
    word64 _out;
1112
0
    _out = ByteReverseWord64(a->n);
1113
0
    XMEMCPY(out, &_out, sizeof(_out));
1114
0
#endif /* BIG_ENDIAN_ORDER */
1115
0
}
Unexecuted instantiation: ssl.c:c64toa
Unexecuted instantiation: tls.c:c64toa
Unexecuted instantiation: tls13.c:c64toa
Unexecuted instantiation: hmac.c:c64toa
Unexecuted instantiation: hash.c:c64toa
Unexecuted instantiation: kdf.c:c64toa
Unexecuted instantiation: random.c:c64toa
Unexecuted instantiation: sha256.c:c64toa
Unexecuted instantiation: rsa.c:c64toa
Unexecuted instantiation: sp_int.c:c64toa
Unexecuted instantiation: aes.c:c64toa
Unexecuted instantiation: sha.c:c64toa
Unexecuted instantiation: sha512.c:c64toa
Unexecuted instantiation: sha3.c:c64toa
Unexecuted instantiation: wolfmath.c:c64toa
Unexecuted instantiation: memory.c:c64toa
Unexecuted instantiation: dh.c:c64toa
Unexecuted instantiation: asn.c:c64toa
Unexecuted instantiation: coding.c:c64toa
Unexecuted instantiation: poly1305.c:c64toa
Unexecuted instantiation: chacha.c:c64toa
Unexecuted instantiation: ecc.c:c64toa
Unexecuted instantiation: wc_mlkem.c:c64toa
Unexecuted instantiation: wc_mlkem_poly.c:c64toa
Unexecuted instantiation: internal.c:c64toa
Unexecuted instantiation: keys.c:c64toa
Unexecuted instantiation: wc_encrypt.c:c64toa
Unexecuted instantiation: pwdbased.c:c64toa
1116
1117
WC_MISC_STATIC WC_INLINE void ato64(const byte *in, w64wrapper *w64)
1118
0
{
1119
0
#ifdef BIG_ENDIAN_ORDER
1120
0
    XMEMCPY(&w64->n, in, sizeof(w64->n));
1121
0
#else
1122
0
    union {
1123
0
        word64 w;
1124
0
        byte b[sizeof(word64)];
1125
0
    } _in;
1126
0
    XMEMCPY(_in.b, in, sizeof(_in));
1127
0
    w64->n = ByteReverseWord64(_in.w);
1128
0
#endif /* BIG_ENDIAN_ORDER */
1129
0
}
Unexecuted instantiation: ssl.c:ato64
Unexecuted instantiation: tls.c:ato64
Unexecuted instantiation: tls13.c:ato64
Unexecuted instantiation: hmac.c:ato64
Unexecuted instantiation: hash.c:ato64
Unexecuted instantiation: kdf.c:ato64
Unexecuted instantiation: random.c:ato64
Unexecuted instantiation: sha256.c:ato64
Unexecuted instantiation: rsa.c:ato64
Unexecuted instantiation: sp_int.c:ato64
Unexecuted instantiation: aes.c:ato64
Unexecuted instantiation: sha.c:ato64
Unexecuted instantiation: sha512.c:ato64
Unexecuted instantiation: sha3.c:ato64
Unexecuted instantiation: wolfmath.c:ato64
Unexecuted instantiation: memory.c:ato64
Unexecuted instantiation: dh.c:ato64
Unexecuted instantiation: asn.c:ato64
Unexecuted instantiation: coding.c:ato64
Unexecuted instantiation: poly1305.c:ato64
Unexecuted instantiation: chacha.c:ato64
Unexecuted instantiation: ecc.c:ato64
Unexecuted instantiation: wc_mlkem.c:ato64
Unexecuted instantiation: wc_mlkem_poly.c:ato64
Unexecuted instantiation: internal.c:ato64
Unexecuted instantiation: keys.c:ato64
Unexecuted instantiation: wc_encrypt.c:ato64
Unexecuted instantiation: pwdbased.c:ato64
1130
1131
WC_MISC_STATIC WC_INLINE w64wrapper w64From32(word32 hi, word32 lo)
1132
0
{
1133
0
    w64wrapper ret;
1134
0
    ret.n = ((word64)hi << 32) | lo;
1135
0
    return ret;
1136
0
}
Unexecuted instantiation: ssl.c:w64From32
Unexecuted instantiation: tls.c:w64From32
Unexecuted instantiation: tls13.c:w64From32
Unexecuted instantiation: hmac.c:w64From32
Unexecuted instantiation: hash.c:w64From32
Unexecuted instantiation: kdf.c:w64From32
Unexecuted instantiation: random.c:w64From32
Unexecuted instantiation: sha256.c:w64From32
Unexecuted instantiation: rsa.c:w64From32
Unexecuted instantiation: sp_int.c:w64From32
Unexecuted instantiation: aes.c:w64From32
Unexecuted instantiation: sha.c:w64From32
Unexecuted instantiation: sha512.c:w64From32
Unexecuted instantiation: sha3.c:w64From32
Unexecuted instantiation: wolfmath.c:w64From32
Unexecuted instantiation: memory.c:w64From32
Unexecuted instantiation: dh.c:w64From32
Unexecuted instantiation: asn.c:w64From32
Unexecuted instantiation: coding.c:w64From32
Unexecuted instantiation: poly1305.c:w64From32
Unexecuted instantiation: chacha.c:w64From32
Unexecuted instantiation: ecc.c:w64From32
Unexecuted instantiation: wc_mlkem.c:w64From32
Unexecuted instantiation: wc_mlkem_poly.c:w64From32
Unexecuted instantiation: internal.c:w64From32
Unexecuted instantiation: keys.c:w64From32
Unexecuted instantiation: wc_encrypt.c:w64From32
Unexecuted instantiation: pwdbased.c:w64From32
1137
1138
WC_MISC_STATIC WC_INLINE byte w64GTE(w64wrapper a, w64wrapper b)
1139
0
{
1140
0
    return a.n >= b.n;
1141
0
}
Unexecuted instantiation: ssl.c:w64GTE
Unexecuted instantiation: tls.c:w64GTE
Unexecuted instantiation: tls13.c:w64GTE
Unexecuted instantiation: hmac.c:w64GTE
Unexecuted instantiation: hash.c:w64GTE
Unexecuted instantiation: kdf.c:w64GTE
Unexecuted instantiation: random.c:w64GTE
Unexecuted instantiation: sha256.c:w64GTE
Unexecuted instantiation: rsa.c:w64GTE
Unexecuted instantiation: sp_int.c:w64GTE
Unexecuted instantiation: aes.c:w64GTE
Unexecuted instantiation: sha.c:w64GTE
Unexecuted instantiation: sha512.c:w64GTE
Unexecuted instantiation: sha3.c:w64GTE
Unexecuted instantiation: wolfmath.c:w64GTE
Unexecuted instantiation: memory.c:w64GTE
Unexecuted instantiation: dh.c:w64GTE
Unexecuted instantiation: asn.c:w64GTE
Unexecuted instantiation: coding.c:w64GTE
Unexecuted instantiation: poly1305.c:w64GTE
Unexecuted instantiation: chacha.c:w64GTE
Unexecuted instantiation: ecc.c:w64GTE
Unexecuted instantiation: wc_mlkem.c:w64GTE
Unexecuted instantiation: wc_mlkem_poly.c:w64GTE
Unexecuted instantiation: internal.c:w64GTE
Unexecuted instantiation: keys.c:w64GTE
Unexecuted instantiation: wc_encrypt.c:w64GTE
Unexecuted instantiation: pwdbased.c:w64GTE
1142
1143
WC_MISC_STATIC WC_INLINE byte w64LT(w64wrapper a, w64wrapper b)
1144
0
{
1145
0
    return a.n < b.n;
1146
0
}
Unexecuted instantiation: ssl.c:w64LT
Unexecuted instantiation: tls.c:w64LT
Unexecuted instantiation: tls13.c:w64LT
Unexecuted instantiation: hmac.c:w64LT
Unexecuted instantiation: hash.c:w64LT
Unexecuted instantiation: kdf.c:w64LT
Unexecuted instantiation: random.c:w64LT
Unexecuted instantiation: sha256.c:w64LT
Unexecuted instantiation: rsa.c:w64LT
Unexecuted instantiation: sp_int.c:w64LT
Unexecuted instantiation: aes.c:w64LT
Unexecuted instantiation: sha.c:w64LT
Unexecuted instantiation: sha512.c:w64LT
Unexecuted instantiation: sha3.c:w64LT
Unexecuted instantiation: wolfmath.c:w64LT
Unexecuted instantiation: memory.c:w64LT
Unexecuted instantiation: dh.c:w64LT
Unexecuted instantiation: asn.c:w64LT
Unexecuted instantiation: coding.c:w64LT
Unexecuted instantiation: poly1305.c:w64LT
Unexecuted instantiation: chacha.c:w64LT
Unexecuted instantiation: ecc.c:w64LT
Unexecuted instantiation: wc_mlkem.c:w64LT
Unexecuted instantiation: wc_mlkem_poly.c:w64LT
Unexecuted instantiation: internal.c:w64LT
Unexecuted instantiation: keys.c:w64LT
Unexecuted instantiation: wc_encrypt.c:w64LT
Unexecuted instantiation: pwdbased.c:w64LT
1147
1148
WC_MISC_STATIC WC_INLINE w64wrapper w64Sub(w64wrapper a, w64wrapper b)
1149
0
{
1150
0
    a.n -= b.n;
1151
0
    return a;
1152
0
}
Unexecuted instantiation: ssl.c:w64Sub
Unexecuted instantiation: tls.c:w64Sub
Unexecuted instantiation: tls13.c:w64Sub
Unexecuted instantiation: hmac.c:w64Sub
Unexecuted instantiation: hash.c:w64Sub
Unexecuted instantiation: kdf.c:w64Sub
Unexecuted instantiation: random.c:w64Sub
Unexecuted instantiation: sha256.c:w64Sub
Unexecuted instantiation: rsa.c:w64Sub
Unexecuted instantiation: sp_int.c:w64Sub
Unexecuted instantiation: aes.c:w64Sub
Unexecuted instantiation: sha.c:w64Sub
Unexecuted instantiation: sha512.c:w64Sub
Unexecuted instantiation: sha3.c:w64Sub
Unexecuted instantiation: wolfmath.c:w64Sub
Unexecuted instantiation: memory.c:w64Sub
Unexecuted instantiation: dh.c:w64Sub
Unexecuted instantiation: asn.c:w64Sub
Unexecuted instantiation: coding.c:w64Sub
Unexecuted instantiation: poly1305.c:w64Sub
Unexecuted instantiation: chacha.c:w64Sub
Unexecuted instantiation: ecc.c:w64Sub
Unexecuted instantiation: wc_mlkem.c:w64Sub
Unexecuted instantiation: wc_mlkem_poly.c:w64Sub
Unexecuted instantiation: internal.c:w64Sub
Unexecuted instantiation: keys.c:w64Sub
Unexecuted instantiation: wc_encrypt.c:w64Sub
Unexecuted instantiation: pwdbased.c:w64Sub
1153
1154
WC_MISC_STATIC WC_INLINE void w64Zero(w64wrapper *a)
1155
0
{
1156
0
    a->n = 0;
1157
0
}
Unexecuted instantiation: ssl.c:w64Zero
Unexecuted instantiation: tls.c:w64Zero
Unexecuted instantiation: tls13.c:w64Zero
Unexecuted instantiation: hmac.c:w64Zero
Unexecuted instantiation: hash.c:w64Zero
Unexecuted instantiation: kdf.c:w64Zero
Unexecuted instantiation: random.c:w64Zero
Unexecuted instantiation: sha256.c:w64Zero
Unexecuted instantiation: rsa.c:w64Zero
Unexecuted instantiation: sp_int.c:w64Zero
Unexecuted instantiation: aes.c:w64Zero
Unexecuted instantiation: sha.c:w64Zero
Unexecuted instantiation: sha512.c:w64Zero
Unexecuted instantiation: sha3.c:w64Zero
Unexecuted instantiation: wolfmath.c:w64Zero
Unexecuted instantiation: memory.c:w64Zero
Unexecuted instantiation: dh.c:w64Zero
Unexecuted instantiation: asn.c:w64Zero
Unexecuted instantiation: coding.c:w64Zero
Unexecuted instantiation: poly1305.c:w64Zero
Unexecuted instantiation: chacha.c:w64Zero
Unexecuted instantiation: ecc.c:w64Zero
Unexecuted instantiation: wc_mlkem.c:w64Zero
Unexecuted instantiation: wc_mlkem_poly.c:w64Zero
Unexecuted instantiation: internal.c:w64Zero
Unexecuted instantiation: keys.c:w64Zero
Unexecuted instantiation: wc_encrypt.c:w64Zero
Unexecuted instantiation: pwdbased.c:w64Zero
1158
1159
WC_MISC_STATIC WC_INLINE w64wrapper w64ShiftRight(w64wrapper a, int shift)
1160
0
{
1161
0
    a.n >>= shift;
1162
0
    return a;
1163
0
}
Unexecuted instantiation: ssl.c:w64ShiftRight
Unexecuted instantiation: tls.c:w64ShiftRight
Unexecuted instantiation: tls13.c:w64ShiftRight
Unexecuted instantiation: hmac.c:w64ShiftRight
Unexecuted instantiation: hash.c:w64ShiftRight
Unexecuted instantiation: kdf.c:w64ShiftRight
Unexecuted instantiation: random.c:w64ShiftRight
Unexecuted instantiation: sha256.c:w64ShiftRight
Unexecuted instantiation: rsa.c:w64ShiftRight
Unexecuted instantiation: sp_int.c:w64ShiftRight
Unexecuted instantiation: aes.c:w64ShiftRight
Unexecuted instantiation: sha.c:w64ShiftRight
Unexecuted instantiation: sha512.c:w64ShiftRight
Unexecuted instantiation: sha3.c:w64ShiftRight
Unexecuted instantiation: wolfmath.c:w64ShiftRight
Unexecuted instantiation: memory.c:w64ShiftRight
Unexecuted instantiation: dh.c:w64ShiftRight
Unexecuted instantiation: asn.c:w64ShiftRight
Unexecuted instantiation: coding.c:w64ShiftRight
Unexecuted instantiation: poly1305.c:w64ShiftRight
Unexecuted instantiation: chacha.c:w64ShiftRight
Unexecuted instantiation: ecc.c:w64ShiftRight
Unexecuted instantiation: wc_mlkem.c:w64ShiftRight
Unexecuted instantiation: wc_mlkem_poly.c:w64ShiftRight
Unexecuted instantiation: internal.c:w64ShiftRight
Unexecuted instantiation: keys.c:w64ShiftRight
Unexecuted instantiation: wc_encrypt.c:w64ShiftRight
Unexecuted instantiation: pwdbased.c:w64ShiftRight
1164
1165
WC_MISC_STATIC WC_INLINE w64wrapper w64ShiftLeft(w64wrapper a, int shift)
1166
0
{
1167
0
    a.n <<= shift;
1168
0
    return a;
1169
0
}
Unexecuted instantiation: ssl.c:w64ShiftLeft
Unexecuted instantiation: tls.c:w64ShiftLeft
Unexecuted instantiation: tls13.c:w64ShiftLeft
Unexecuted instantiation: hmac.c:w64ShiftLeft
Unexecuted instantiation: hash.c:w64ShiftLeft
Unexecuted instantiation: kdf.c:w64ShiftLeft
Unexecuted instantiation: random.c:w64ShiftLeft
Unexecuted instantiation: sha256.c:w64ShiftLeft
Unexecuted instantiation: rsa.c:w64ShiftLeft
Unexecuted instantiation: sp_int.c:w64ShiftLeft
Unexecuted instantiation: aes.c:w64ShiftLeft
Unexecuted instantiation: sha.c:w64ShiftLeft
Unexecuted instantiation: sha512.c:w64ShiftLeft
Unexecuted instantiation: sha3.c:w64ShiftLeft
Unexecuted instantiation: wolfmath.c:w64ShiftLeft
Unexecuted instantiation: memory.c:w64ShiftLeft
Unexecuted instantiation: dh.c:w64ShiftLeft
Unexecuted instantiation: asn.c:w64ShiftLeft
Unexecuted instantiation: coding.c:w64ShiftLeft
Unexecuted instantiation: poly1305.c:w64ShiftLeft
Unexecuted instantiation: chacha.c:w64ShiftLeft
Unexecuted instantiation: ecc.c:w64ShiftLeft
Unexecuted instantiation: wc_mlkem.c:w64ShiftLeft
Unexecuted instantiation: wc_mlkem_poly.c:w64ShiftLeft
Unexecuted instantiation: internal.c:w64ShiftLeft
Unexecuted instantiation: keys.c:w64ShiftLeft
Unexecuted instantiation: wc_encrypt.c:w64ShiftLeft
Unexecuted instantiation: pwdbased.c:w64ShiftLeft
1170
1171
WC_MISC_STATIC WC_INLINE w64wrapper w64Mul(word32 a, word32 b)
1172
0
{
1173
0
    w64wrapper ret;
1174
0
    ret.n = (word64)a * (word64)b;
1175
0
    return ret;
1176
0
}
Unexecuted instantiation: ssl.c:w64Mul
Unexecuted instantiation: tls.c:w64Mul
Unexecuted instantiation: tls13.c:w64Mul
Unexecuted instantiation: hmac.c:w64Mul
Unexecuted instantiation: hash.c:w64Mul
Unexecuted instantiation: kdf.c:w64Mul
Unexecuted instantiation: random.c:w64Mul
Unexecuted instantiation: sha256.c:w64Mul
Unexecuted instantiation: rsa.c:w64Mul
Unexecuted instantiation: sp_int.c:w64Mul
Unexecuted instantiation: aes.c:w64Mul
Unexecuted instantiation: sha.c:w64Mul
Unexecuted instantiation: sha512.c:w64Mul
Unexecuted instantiation: sha3.c:w64Mul
Unexecuted instantiation: wolfmath.c:w64Mul
Unexecuted instantiation: memory.c:w64Mul
Unexecuted instantiation: dh.c:w64Mul
Unexecuted instantiation: asn.c:w64Mul
Unexecuted instantiation: coding.c:w64Mul
Unexecuted instantiation: poly1305.c:w64Mul
Unexecuted instantiation: chacha.c:w64Mul
Unexecuted instantiation: ecc.c:w64Mul
Unexecuted instantiation: wc_mlkem.c:w64Mul
Unexecuted instantiation: wc_mlkem_poly.c:w64Mul
Unexecuted instantiation: internal.c:w64Mul
Unexecuted instantiation: keys.c:w64Mul
Unexecuted instantiation: wc_encrypt.c:w64Mul
Unexecuted instantiation: pwdbased.c:w64Mul
1177
1178
#else
1179
1180
WC_MISC_STATIC WC_INLINE void w64Increment(w64wrapper *n)
1181
{
1182
    n->n[1]++;
1183
    if (n->n[1] == 0)
1184
        n->n[0]++;
1185
}
1186
1187
WC_MISC_STATIC WC_INLINE void w64Decrement(w64wrapper *n) {
1188
    if (n->n[1] == 0)
1189
        n->n[0]--;
1190
    n->n[1]--;
1191
}
1192
1193
WC_MISC_STATIC WC_INLINE byte w64Equal(w64wrapper a, w64wrapper b)
1194
{
1195
    return (a.n[0] == b.n[0] && a.n[1] == b.n[1]);
1196
}
1197
1198
WC_MISC_STATIC WC_INLINE word32 w64GetLow32(w64wrapper n) {
1199
    return n.n[1];
1200
}
1201
1202
WC_MISC_STATIC WC_INLINE word32 w64GetHigh32(w64wrapper n) {
1203
    return n.n[0];
1204
}
1205
1206
WC_MISC_STATIC WC_INLINE void w64SetLow32(w64wrapper *n, word32 low)
1207
{
1208
    n->n[1] = low;
1209
}
1210
1211
WC_MISC_STATIC WC_INLINE w64wrapper w64Add32(w64wrapper a, word32 b, byte *wrap)
1212
{
1213
    a.n[1] += b;
1214
    if (a.n[1] < b) {
1215
        a.n[0]++;
1216
        if (wrap != NULL && a.n[0] == 0)
1217
                *wrap = 1;
1218
    }
1219
1220
    return a;
1221
}
1222
1223
WC_MISC_STATIC WC_INLINE w64wrapper w64Add(w64wrapper a, w64wrapper b,
1224
    byte *wrap)
1225
{
1226
    a.n[1] += b.n[1];
1227
    if (a.n[1] < b.n[1]) {
1228
        a.n[0]++;
1229
        if (wrap != NULL && a.n[0] == 0)
1230
                *wrap = 1;
1231
    }
1232
1233
    a.n[0] += b.n[0];
1234
    if (wrap != NULL && a.n[0] < b.n[0]) {
1235
        *wrap = 1;
1236
    }
1237
1238
    return a;
1239
}
1240
1241
WC_MISC_STATIC WC_INLINE w64wrapper w64Sub32(w64wrapper a, word32 b, byte *wrap)
1242
{
1243
    byte _underflow = 0;
1244
    if (a.n[1] < b)
1245
        _underflow = 1;
1246
1247
    a.n[1] -= b;
1248
    if (_underflow) {
1249
        if (a.n[0] == 0 && wrap != NULL)
1250
            *wrap = 1;
1251
        a.n[0]--;
1252
    }
1253
1254
    return a;
1255
}
1256
1257
WC_MISC_STATIC WC_INLINE w64wrapper w64Sub(w64wrapper a, w64wrapper b)
1258
{
1259
    if (a.n[1] < b.n[1])
1260
        a.n[0]--;
1261
    a.n[1] -= b.n[1];
1262
    a.n[0] -= b.n[0];
1263
    return a;
1264
}
1265
1266
WC_MISC_STATIC WC_INLINE void w64Zero(w64wrapper *a)
1267
{
1268
    a->n[0] = a->n[1] = 0;
1269
}
1270
1271
WC_MISC_STATIC WC_INLINE byte w64GT(w64wrapper a, w64wrapper b)
1272
{
1273
    if (a.n[0] > b.n[0])
1274
        return 1;
1275
    if (a.n[0] == b.n[0])
1276
        return a.n[1] > b.n[1];
1277
    return 0;
1278
}
1279
1280
WC_MISC_STATIC WC_INLINE byte w64GTE(w64wrapper a, w64wrapper b)
1281
{
1282
    if (a.n[0] > b.n[0])
1283
        return 1;
1284
    if (a.n[0] == b.n[0])
1285
        return a.n[1] >= b.n[1];
1286
    return 0;
1287
}
1288
1289
WC_MISC_STATIC WC_INLINE byte w64IsZero(w64wrapper a)
1290
{
1291
    return a.n[0] == 0 && a.n[1] == 0;
1292
}
1293
1294
WC_MISC_STATIC WC_INLINE void c64toa(const w64wrapper *a, byte *out)
1295
{
1296
#ifdef BIG_ENDIAN_ORDER
1297
    word32 *_out = (word32*)(out);
1298
    _out[0] = a->n[0];
1299
    _out[1] = a->n[1];
1300
#else
1301
    c32toa(a->n[0], out);
1302
    c32toa(a->n[1], out + 4);
1303
#endif /* BIG_ENDIAN_ORDER */
1304
}
1305
1306
WC_MISC_STATIC WC_INLINE void ato64(const byte *in, w64wrapper *w64)
1307
{
1308
#ifdef BIG_ENDIAN_ORDER
1309
    const word32 *_in = (const word32*)(in);
1310
    w64->n[0] = *_in;
1311
    w64->n[1] = *(_in + 1);
1312
#else
1313
    ato32(in, &w64->n[0]);
1314
    ato32(in + 4, &w64->n[1]);
1315
#endif /* BIG_ENDIAN_ORDER */
1316
}
1317
1318
WC_MISC_STATIC WC_INLINE w64wrapper w64From32(word32 hi, word32 lo)
1319
{
1320
    w64wrapper w64;
1321
    w64.n[0] = hi;
1322
    w64.n[1] = lo;
1323
    return w64;
1324
}
1325
1326
WC_MISC_STATIC WC_INLINE byte w64LT(w64wrapper a, w64wrapper b)
1327
{
1328
    if (a.n[0] < b.n[0])
1329
        return 1;
1330
    if (a.n[0] == b.n[0])
1331
        return a.n[1] < b.n[1];
1332
1333
    return 0;
1334
}
1335
1336
WC_MISC_STATIC WC_INLINE w64wrapper w64ShiftRight(w64wrapper a, int shift)
1337
{
1338
     if (shift < 32) {
1339
         a.n[1] = (a.n[1] >> shift) | (a.n[0] << (32 - shift));
1340
         a.n[0] >>= shift;
1341
     }
1342
     else {
1343
         a.n[1] = a.n[0] >> (shift - 32);
1344
         a.n[0] = 0;
1345
     }
1346
     return a;
1347
}
1348
WC_MISC_STATIC WC_INLINE w64wrapper w64ShiftLeft(w64wrapper a, int shift)
1349
{
1350
     if (shift < 32) {
1351
         a.n[0] = (a.n[0] << shift) | (a.n[1] >> (32 - shift));
1352
         a.n[1] <<= shift;
1353
     }
1354
     else {
1355
         a.n[0] = a.n[1] << (shift - 32);
1356
         a.n[1] = 0;
1357
     }
1358
     return a;
1359
}
1360
1361
WC_MISC_STATIC WC_INLINE w64wrapper w64Mul(word32 a, word32 b)
1362
{
1363
    w64wrapper ret;
1364
    word16 ltlA, ltlB, ltlC, ltlD;
1365
    word32 bigA, bigB, bigC, bigD;
1366
1367
    ltlA = a & 0xFFFF;
1368
    ltlB = (a >> 16) & 0xFFFF;
1369
    ltlC = b & 0xFFFF;
1370
    ltlD = (b >> 16) & 0xFFFF;
1371
1372
    bigA = (word32)ltlA * (word32)ltlC;
1373
    bigC = (word32)ltlB * (word32)ltlC;
1374
    bigD = (word32)ltlA * (word32)ltlD;
1375
    bigB = (word32)ltlB * (word32)ltlD;
1376
1377
    ret = w64From32(0, bigB);
1378
    ret = w64ShiftLeft(ret, 16);
1379
    ret = w64Add32(ret, bigD, NULL);
1380
    ret = w64Add32(ret, bigC, NULL);
1381
    ret = w64ShiftLeft(ret, 16);
1382
    return w64Add32(ret, bigA, NULL);
1383
}
1384
1385
#endif /* WORD64_AVAILABLE && !WOLFSSL_W64_WRAPPER_TEST */
1386
#endif /* WOLFSSL_W64_WRAPPER */
1387
1388
#if defined(HAVE_SESSION_TICKET) || !defined(NO_CERTS) || \
1389
    !defined(NO_SESSION_CACHE)
1390
/* Make a word from the front of random hash */
1391
WC_MISC_STATIC WC_INLINE word32 MakeWordFromHash(const byte* hashID)
1392
0
{
1393
0
    return ((word32)hashID[0] << 24) | ((word32)hashID[1] << 16) |
1394
0
           ((word32)hashID[2] <<  8) |  (word32)hashID[3];
1395
0
}
Unexecuted instantiation: ssl.c:MakeWordFromHash
Unexecuted instantiation: tls.c:MakeWordFromHash
Unexecuted instantiation: tls13.c:MakeWordFromHash
Unexecuted instantiation: hmac.c:MakeWordFromHash
Unexecuted instantiation: hash.c:MakeWordFromHash
Unexecuted instantiation: kdf.c:MakeWordFromHash
Unexecuted instantiation: random.c:MakeWordFromHash
Unexecuted instantiation: sha256.c:MakeWordFromHash
Unexecuted instantiation: rsa.c:MakeWordFromHash
Unexecuted instantiation: sp_int.c:MakeWordFromHash
Unexecuted instantiation: aes.c:MakeWordFromHash
Unexecuted instantiation: sha.c:MakeWordFromHash
Unexecuted instantiation: sha512.c:MakeWordFromHash
Unexecuted instantiation: sha3.c:MakeWordFromHash
Unexecuted instantiation: wolfmath.c:MakeWordFromHash
Unexecuted instantiation: memory.c:MakeWordFromHash
Unexecuted instantiation: dh.c:MakeWordFromHash
Unexecuted instantiation: asn.c:MakeWordFromHash
Unexecuted instantiation: coding.c:MakeWordFromHash
Unexecuted instantiation: poly1305.c:MakeWordFromHash
Unexecuted instantiation: chacha.c:MakeWordFromHash
Unexecuted instantiation: ecc.c:MakeWordFromHash
Unexecuted instantiation: wc_mlkem.c:MakeWordFromHash
Unexecuted instantiation: wc_mlkem_poly.c:MakeWordFromHash
Unexecuted instantiation: internal.c:MakeWordFromHash
Unexecuted instantiation: keys.c:MakeWordFromHash
Unexecuted instantiation: wc_encrypt.c:MakeWordFromHash
Unexecuted instantiation: pwdbased.c:MakeWordFromHash
1396
#endif /* HAVE_SESSION_TICKET || !NO_CERTS || !NO_SESSION_CACHE */
1397
1398
1399
#if !defined(WOLFCRYPT_ONLY) && !defined(NO_HASH_WRAPPER) && \
1400
    (!defined(NO_SESSION_CACHE) || defined(HAVE_SESSION_TICKET))
1401
1402
#include <wolfssl/wolfcrypt/hash.h>
1403
1404
/* some session IDs aren't random after all, let's make them random */
1405
WC_MISC_STATIC WC_INLINE word32 HashObject(const byte* o, word32 len,
1406
                                           int* error)
1407
0
{
1408
0
    byte digest[WC_MAX_DIGEST_SIZE];
1409
1410
#ifndef NO_MD5
1411
    *error =  wc_Md5Hash(o, len, digest);
1412
#elif !defined(NO_SHA)
1413
    *error =  wc_ShaHash(o, len, digest);
1414
#elif !defined(NO_SHA256)
1415
    *error =  wc_Sha256Hash(o, len, digest);
1416
#else
1417
    #error "We need a digest to hash the session IDs"
1418
#endif
1419
1420
0
    return *error == 0 ? MakeWordFromHash(digest) : 0; /* 0 on failure */
1421
0
}
Unexecuted instantiation: ssl.c:HashObject
Unexecuted instantiation: tls.c:HashObject
Unexecuted instantiation: tls13.c:HashObject
Unexecuted instantiation: hmac.c:HashObject
Unexecuted instantiation: hash.c:HashObject
Unexecuted instantiation: kdf.c:HashObject
Unexecuted instantiation: random.c:HashObject
Unexecuted instantiation: sha256.c:HashObject
Unexecuted instantiation: rsa.c:HashObject
Unexecuted instantiation: sp_int.c:HashObject
Unexecuted instantiation: aes.c:HashObject
Unexecuted instantiation: sha.c:HashObject
Unexecuted instantiation: sha512.c:HashObject
Unexecuted instantiation: sha3.c:HashObject
Unexecuted instantiation: wolfmath.c:HashObject
Unexecuted instantiation: memory.c:HashObject
Unexecuted instantiation: dh.c:HashObject
Unexecuted instantiation: asn.c:HashObject
Unexecuted instantiation: coding.c:HashObject
Unexecuted instantiation: poly1305.c:HashObject
Unexecuted instantiation: chacha.c:HashObject
Unexecuted instantiation: ecc.c:HashObject
Unexecuted instantiation: wc_mlkem.c:HashObject
Unexecuted instantiation: wc_mlkem_poly.c:HashObject
Unexecuted instantiation: internal.c:HashObject
Unexecuted instantiation: keys.c:HashObject
Unexecuted instantiation: wc_encrypt.c:HashObject
Unexecuted instantiation: pwdbased.c:HashObject
1422
#endif /* WOLFCRYPT_ONLY && !NO_HASH_WRAPPER &&
1423
        * (!NO_SESSION_CACHE || HAVE_SESSION_TICKET) */
1424
1425
WC_MISC_STATIC WC_INLINE char* CopyString(const char* src, int srcLen,
1426
0
        void* heap, int type) {
1427
0
    char* dst = NULL;
1428
1429
0
    if (src == NULL)
1430
0
        return NULL;
1431
1432
0
    if (srcLen <= 0)
1433
0
        srcLen = (int)XSTRLEN(src);
1434
1435
0
    dst = (char*)XMALLOC((size_t)srcLen + 1, heap, type);
1436
0
    if (dst != NULL) {
1437
0
        XMEMCPY(dst, src, (size_t)srcLen);
1438
0
        dst[srcLen] = '\0';
1439
0
    }
1440
1441
0
    return dst;
1442
0
}
Unexecuted instantiation: ssl.c:CopyString
Unexecuted instantiation: tls.c:CopyString
Unexecuted instantiation: tls13.c:CopyString
Unexecuted instantiation: hmac.c:CopyString
Unexecuted instantiation: hash.c:CopyString
Unexecuted instantiation: kdf.c:CopyString
Unexecuted instantiation: random.c:CopyString
Unexecuted instantiation: sha256.c:CopyString
Unexecuted instantiation: rsa.c:CopyString
Unexecuted instantiation: sp_int.c:CopyString
Unexecuted instantiation: aes.c:CopyString
Unexecuted instantiation: sha.c:CopyString
Unexecuted instantiation: sha512.c:CopyString
Unexecuted instantiation: sha3.c:CopyString
Unexecuted instantiation: wolfmath.c:CopyString
Unexecuted instantiation: memory.c:CopyString
Unexecuted instantiation: dh.c:CopyString
Unexecuted instantiation: asn.c:CopyString
Unexecuted instantiation: coding.c:CopyString
Unexecuted instantiation: poly1305.c:CopyString
Unexecuted instantiation: chacha.c:CopyString
Unexecuted instantiation: ecc.c:CopyString
Unexecuted instantiation: wc_mlkem.c:CopyString
Unexecuted instantiation: wc_mlkem_poly.c:CopyString
Unexecuted instantiation: internal.c:CopyString
Unexecuted instantiation: keys.c:CopyString
Unexecuted instantiation: wc_encrypt.c:CopyString
Unexecuted instantiation: pwdbased.c:CopyString
1443
1444
#endif /* !WOLFSSL_MISC_INCLUDED && !NO_INLINE */
1445
1446
#endif /* WOLF_CRYPT_MISC_C */