-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathmlkem_native_config.h
More file actions
645 lines (605 loc) · 21.4 KB
/
mlkem_native_config.h
File metadata and controls
645 lines (605 loc) · 21.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
/*
* Copyright (c) The mlkem-native project authors
* SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT
*/
/* References
* ==========
*
* - [FIPS140_3_IG]
* Implementation Guidance for FIPS 140-3 and the Cryptographic Module
* Validation Program
* National Institute of Standards and Technology
* https://csrc.nist.gov/projects/cryptographic-module-validation-program/fips-140-3-ig-announcements
*
* - [FIPS203]
* FIPS 203 Module-Lattice-Based Key-Encapsulation Mechanism Standard
* National Institute of Standards and Technology
* https://csrc.nist.gov/pubs/fips/203/final
*/
#ifndef MLK_CONFIG_H
#define MLK_CONFIG_H
/**
* Specifies the parameter set for ML-KEM:
* - MLK_CONFIG_PARAMETER_SET=512 corresponds to ML-KEM-512
* - MLK_CONFIG_PARAMETER_SET=768 corresponds to ML-KEM-768
* - MLK_CONFIG_PARAMETER_SET=1024 corresponds to ML-KEM-1024
*
* If you want to support multiple parameter sets, build the library multiple
* times and set MLK_CONFIG_MULTILEVEL_BUILD. See MLK_CONFIG_MULTILEVEL_BUILD
* for how to do this while minimizing code duplication.
*
* This can also be set using CFLAGS.
*/
#ifndef MLK_CONFIG_PARAMETER_SET
#define MLK_CONFIG_PARAMETER_SET \
768 /* Change this for different security strengths */
#endif
/**
* MLK_CONFIG_FILE
*
* If defined, this is a header that will be included instead of the default
* configuration file mlkem/mlkem_native_config.h.
*
* When you need to build mlkem-native in multiple configurations, using
* varying MLK_CONFIG_FILE can be more convenient than configuring everything
* through CFLAGS.
*
* To use, MLK_CONFIG_FILE _must_ be defined prior to the inclusion of any
* mlkem-native headers. For example, it can be set by passing
* `-DMLK_CONFIG_FILE="..."` on the command line.
*/
/* #define MLK_CONFIG_FILE "mlkem_native_config.h" */
/**
* The prefix to use to namespace global symbols from mlkem/.
*
* In a multi-level build, level-dependent symbols will additionally be
* prefixed with the parameter set (512/768/1024).
*
* This can also be set using CFLAGS.
*/
#if !defined(MLK_CONFIG_NAMESPACE_PREFIX)
#define MLK_CONFIG_NAMESPACE_PREFIX MLK_DEFAULT_NAMESPACE_PREFIX
#endif
/**
* MLK_CONFIG_MULTILEVEL_BUILD
*
* Set this if the build is part of a multi-level build supporting multiple
* parameter sets.
*
* If you need only a single parameter set, keep this unset.
*
* To build mlkem-native with support for all parameter sets, build it three
* times -- once per parameter set -- and set the option
* MLK_CONFIG_MULTILEVEL_WITH_SHARED for exactly one of them, and
* MLK_CONFIG_MULTILEVEL_NO_SHARED for the others.
* MLK_CONFIG_MULTILEVEL_BUILD should be set for all of them.
*
* See examples/multilevel_build for an example.
*
* This can also be set using CFLAGS.
*/
/* #define MLK_CONFIG_MULTILEVEL_BUILD */
/**
* MLK_CONFIG_EXTERNAL_API_QUALIFIER
*
* If set, this option provides an additional function qualifier to be added
* to declarations of mlkem-native's public API.
*
* The primary use case for this option are single-CU builds where the public
* API exposed by mlkem-native is wrapped by another API in the consuming
* application. In this case, even mlkem-native's public API can be marked
* `static`.
*/
/* #define MLK_CONFIG_EXTERNAL_API_QUALIFIER */
/**
* MLK_CONFIG_NO_RANDOMIZED_API
*
* If this option is set, mlkem-native will be built without the randomized
* API functions (crypto_kem_keypair and crypto_kem_enc). This allows users
* to build mlkem-native without providing a randombytes() implementation
* if they only need the deterministic API (crypto_kem_keypair_derand,
* crypto_kem_enc_derand, crypto_kem_dec).
*
* @note This option is incompatible with MLK_CONFIG_KEYGEN_PCT as the
* current PCT implementation requires crypto_kem_enc().
*/
/* #define MLK_CONFIG_NO_RANDOMIZED_API */
/**
* MLK_CONFIG_NO_SUPERCOP
*
* By default, mlkem_native.h exposes the mlkem-native API in the SUPERCOP
* naming convention (crypto_kem_xxx). If you don't need this, set
* MLK_CONFIG_NO_SUPERCOP.
*
* @note You must set this for a multi-level build as the SUPERCOP naming
* does not disambiguate between the parameter sets.
*/
/* #define MLK_CONFIG_NO_SUPERCOP */
/**
* MLK_CONFIG_CONSTANTS_ONLY
*
* If you only need the size constants (MLKEM_PUBLICKEYBYTES, etc.) but no
* function declarations, set MLK_CONFIG_CONSTANTS_ONLY.
*
* This only affects the public header mlkem_native.h, not the
* implementation.
*/
/* #define MLK_CONFIG_CONSTANTS_ONLY */
/******************************************************************************
*
* Build-only configuration options
*
* The remaining configurations are build-options only.
* They do not affect the API described in mlkem_native.h.
*
*****************************************************************************/
#if defined(MLK_BUILD_INTERNAL)
/**
* MLK_CONFIG_MULTILEVEL_WITH_SHARED
*
* This is for multi-level builds of mlkem-native only. If you need only a
* single parameter set, keep this unset.
*
* If this is set, all MLK_CONFIG_PARAMETER_SET-independent code will be
* included in the build, including code needed only for other parameter
* sets.
*
* Example: mlk_poly_cbd3 is only needed for MLK_CONFIG_PARAMETER_SET == 512.
* Yet, if this option is set for a build with
* MLK_CONFIG_PARAMETER_SET == 768/1024, it would be included.
*
* To build mlkem-native with support for all parameter sets, build it three
* times -- once per parameter set -- and set the option
* MLK_CONFIG_MULTILEVEL_WITH_SHARED for exactly one of them, and
* MLK_CONFIG_MULTILEVEL_NO_SHARED for the others.
* MLK_CONFIG_MULTILEVEL_BUILD should be set for all of them.
*
* See examples/multilevel_build for an example.
*
* This can also be set using CFLAGS.
*/
/* #define MLK_CONFIG_MULTILEVEL_WITH_SHARED */
/**
* MLK_CONFIG_MULTILEVEL_NO_SHARED
*
* This is for multi-level builds of mlkem-native only. If you need only a
* single parameter set, keep this unset.
*
* If this is set, no MLK_CONFIG_PARAMETER_SET-independent code will be
* included in the build.
*
* To build mlkem-native with support for all parameter sets, build it three
* times -- once per parameter set -- and set the option
* MLK_CONFIG_MULTILEVEL_WITH_SHARED for exactly one of them, and
* MLK_CONFIG_MULTILEVEL_NO_SHARED for the others.
* MLK_CONFIG_MULTILEVEL_BUILD should be set for all of them.
*
* See examples/multilevel_build for an example.
*
* This can also be set using CFLAGS.
*/
/* #define MLK_CONFIG_MULTILEVEL_NO_SHARED */
/**
* MLK_CONFIG_MONOBUILD_KEEP_SHARED_HEADERS
*
* This is only relevant for single compilation unit (SCU) builds of
* mlkem-native. In this case, it determines whether directives defined in
* parameter-set-independent headers should be #undef'ined or not at the
* end of the SCU file. This is needed in multilevel builds.
*
* See examples/multilevel_build_native for an example.
*
* This can also be set using CFLAGS.
*/
/* #define MLK_CONFIG_MONOBUILD_KEEP_SHARED_HEADERS */
/**
* MLK_CONFIG_USE_NATIVE_BACKEND_ARITH
*
* Determines whether a native arithmetic backend should be used.
*
* The arithmetic backend covers performance-critical functions such as the
* number-theoretic transform (NTT).
*
* If this option is unset, the C backend will be used.
*
* If this option is set, the arithmetic backend to be used is determined
* by MLK_CONFIG_ARITH_BACKEND_FILE: if the latter is unset, the default
* backend for the target architecture will be used. If set, it must be the
* name of a backend metadata file.
*
* This can also be set using CFLAGS.
*/
#if !defined(MLK_CONFIG_USE_NATIVE_BACKEND_ARITH)
/* #define MLK_CONFIG_USE_NATIVE_BACKEND_ARITH */
#endif
/**
* MLK_CONFIG_ARITH_BACKEND_FILE
*
* The arithmetic backend to use.
*
* If MLK_CONFIG_USE_NATIVE_BACKEND_ARITH is unset, this option is ignored.
*
* If MLK_CONFIG_USE_NATIVE_BACKEND_ARITH is set, this option must either
* be undefined or the filename of an arithmetic backend. If unset, the
* default backend will be used.
*
* This can be set using CFLAGS.
*/
#if defined(MLK_CONFIG_USE_NATIVE_BACKEND_ARITH) && \
!defined(MLK_CONFIG_ARITH_BACKEND_FILE)
#define MLK_CONFIG_ARITH_BACKEND_FILE "native/meta.h"
#endif
/**
* MLK_CONFIG_USE_NATIVE_BACKEND_FIPS202
*
* Determines whether a native FIPS202 backend should be used.
*
* The FIPS202 backend covers 1x/2x/4x-fold Keccak-f1600, which is the
* performance bottleneck of SHA3 and SHAKE.
*
* If this option is unset, the C backend will be used.
*
* If this option is set, the FIPS202 backend to be used is determined by
* MLK_CONFIG_FIPS202_BACKEND_FILE: if the latter is unset, the default
* backend for the target architecture will be used. If set, it must be
* the name of a backend metadata file.
*
* This can also be set using CFLAGS.
*/
#if !defined(MLK_CONFIG_USE_NATIVE_BACKEND_FIPS202)
/* #define MLK_CONFIG_USE_NATIVE_BACKEND_FIPS202 */
#endif
/**
* MLK_CONFIG_FIPS202_BACKEND_FILE
*
* The FIPS-202 backend to use.
*
* If MLK_CONFIG_USE_NATIVE_BACKEND_FIPS202 is set, this option must either
* be undefined or the filename of a FIPS202 backend. If unset, the default
* backend will be used.
*
* This can be set using CFLAGS.
*/
#if defined(MLK_CONFIG_USE_NATIVE_BACKEND_FIPS202) && \
!defined(MLK_CONFIG_FIPS202_BACKEND_FILE)
#define MLK_CONFIG_FIPS202_BACKEND_FILE "fips202/native/auto.h"
#endif
/**
* MLK_CONFIG_FIPS202_CUSTOM_HEADER
*
* Custom header to use for FIPS-202.
*
* This should only be set if you intend to use a custom FIPS-202
* implementation, different from the one shipped with mlkem-native.
*
* If set, it must be the name of a file serving as the replacement for
* mlkem/fips202/fips202.h, and exposing the same API (see FIPS202.md).
*/
/* #define MLK_CONFIG_FIPS202_CUSTOM_HEADER "SOME_FILE.h" */
/**
* MLK_CONFIG_FIPS202X4_CUSTOM_HEADER
*
* Custom header to use for FIPS-202-X4.
*
* This should only be set if you intend to use a custom FIPS-202
* implementation, different from the one shipped with mlkem-native.
*
* If set, it must be the name of a file serving as the replacement for
* mlkem/fips202/fips202x4.h, and exposing the same API (see FIPS202.md).
*/
/* #define MLK_CONFIG_FIPS202X4_CUSTOM_HEADER "SOME_FILE.h" */
/**
* MLK_CONFIG_CUSTOM_ZEROIZE
*
* In compliance with @[FIPS203, Section 3.3], mlkem-native zeroizes
* intermediate stack buffers before returning from function calls.
*
* Set this option and define `mlk_zeroize` if you want to use a custom
* method to zeroize intermediate stack buffers. The default implementation
* uses SecureZeroMemory on Windows and a memset + compiler barrier
* otherwise. If neither of those is available on the target platform,
* compilation will fail, and you will need to use MLK_CONFIG_CUSTOM_ZEROIZE
* to provide a custom implementation of `mlk_zeroize()`.
*
* @warning The explicit stack zeroization conducted by mlkem-native reduces
* the likelihood of data leaking on the stack, but does not
* eliminate it. The C standard makes no guarantee about where a
* compiler allocates structures and whether/where it makes copies
* of them. Also, in addition to entire structures, there may also
* be potentially exploitable leakage of individual values on the
* stack. If you need bullet-proof zeroization of the stack, you
* need to consider additional measures instead of what this
* feature provides. In this case, you can set mlk_zeroize to a
* no-op.
*/
/* #define MLK_CONFIG_CUSTOM_ZEROIZE
#if !defined(__ASSEMBLER__)
#include <stdint.h>
#include "src/sys.h"
static MLK_INLINE void mlk_zeroize(void *ptr, size_t len)
{
... your implementation ...
}
#endif
*/
/**
* MLK_CONFIG_CUSTOM_RANDOMBYTES
*
* mlkem-native does not provide a secure randombytes implementation. Such
* an implementation has to be provided by the consumer.
*
* If this option is not set, mlkem-native expects a function
* int randombytes(uint8_t *out, size_t outlen). It is expected to return
* zero on success, and non-zero on failure. In case of failure, the
* top-level APIs will return an MLK_ERR_RNG_FAIL error code.
*
* Set this option and define `mlk_randombytes` (with the same signature
* and behaviour) if you want to use a custom method to sample randombytes
* with a different name or signature.
*/
/* #define MLK_CONFIG_CUSTOM_RANDOMBYTES
#if !defined(__ASSEMBLER__)
#include <stdint.h>
#include "src/sys.h"
static MLK_INLINE int mlk_randombytes(uint8_t *ptr, size_t len)
{
... your implementation ...
return 0;
}
#endif
*/
/**
* MLK_CONFIG_CUSTOM_CAPABILITY_FUNC
*
* mlkem-native backends may rely on specific hardware features. Those
* backends will only be included in an mlkem-native build if support for
* the respective features is enabled at compile-time. However, when
* building for a heterogeneous set of CPUs to run the resulting
* binary/library on, feature detection at _runtime_ is needed to decide
* whether a backend can be used or not.
*
* Set this option and define `mlk_sys_check_capability` if you want to
* use a custom method to dispatch between implementations.
*
* If this option is not set, mlkem-native uses compile-time feature
* detection only to decide which backend to use.
*
* If you compile mlkem-native on a system with different capabilities
* than the system that the resulting binary/library will be run on, you
* must use this option.
*/
/* #define MLK_CONFIG_CUSTOM_CAPABILITY_FUNC
static MLK_INLINE int mlk_sys_check_capability(mlk_sys_cap cap)
__contract__(
ensures(return_value == 0 || return_value == 1)
)
{
... your implementation ...
}
*/
/**
* MLK_CONFIG_CUSTOM_ALLOC_FREE [EXPERIMENTAL]
*
* Set this option and define `MLK_CUSTOM_ALLOC` and `MLK_CUSTOM_FREE` if
* you want to use custom allocation for large local structures or buffers.
*
* By default, all buffers/structures are allocated on the stack. If this
* option is set, most of them will be allocated via MLK_CUSTOM_ALLOC.
*
* Parameters to MLK_CUSTOM_ALLOC:
* - T* v: Target pointer to declare.
* - T: Type of structure to be allocated.
* - N: Number of elements to be allocated.
*
* Parameters to MLK_CUSTOM_FREE:
* - T* v: Target pointer to free. May be NULL.
* - T: Type of structure to be freed.
* - N: Number of elements to be freed.
*
* @warning This option is experimental. Its scope, configuration and
* function/macro signatures may change at any time. We expect a
* stable API for v2.
*
* @note Even if this option is set, some allocations further down the call
* stack will still be made from the stack, consuming up to 3KB of
* stack space. Those will likely be added to the scope of this
* option in the future.
*
* @note MLK_CUSTOM_ALLOC need not guarantee a successful allocation nor
* include error handling. Upon failure, the target pointer should
* simply be set to NULL. The calling code will handle this case and
* invoke MLK_CUSTOM_FREE.
*/
/* #define MLK_CONFIG_CUSTOM_ALLOC_FREE
#if !defined(__ASSEMBLER__)
#include <stdlib.h>
#define MLK_CUSTOM_ALLOC(v, T, N) \
T* (v) = (T *)aligned_alloc(MLK_DEFAULT_ALIGN, \
MLK_ALIGN_UP(sizeof(T) * (N)))
#define MLK_CUSTOM_FREE(v, T, N) free(v)
#endif
*/
/**
* MLK_CONFIG_CUSTOM_MEMCPY
*
* Set this option and define `mlk_memcpy` if you want to use a custom
* method to copy memory instead of the standard library memcpy function.
*
* The custom implementation must have the same signature and behavior as
* the standard memcpy function:
* void *mlk_memcpy(void *dest, const void *src, size_t n)
*/
/* #define MLK_CONFIG_CUSTOM_MEMCPY
#if !defined(__ASSEMBLER__)
#include <stdint.h>
#include "src/sys.h"
static MLK_INLINE void *mlk_memcpy(void *dest, const void *src, size_t n)
{
... your implementation ...
}
#endif
*/
/**
* MLK_CONFIG_CUSTOM_MEMSET
*
* Set this option and define `mlk_memset` if you want to use a custom
* method to set memory instead of the standard library memset function.
*
* The custom implementation must have the same signature and behavior as
* the standard memset function:
* void *mlk_memset(void *s, int c, size_t n)
*/
/* #define MLK_CONFIG_CUSTOM_MEMSET
#if !defined(__ASSEMBLER__)
#include <stdint.h>
#include "src/sys.h"
static MLK_INLINE void *mlk_memset(void *s, int c, size_t n)
{
... your implementation ...
}
#endif
*/
/**
* MLK_CONFIG_INTERNAL_API_QUALIFIER
*
* If set, this option provides an additional qualifier to be added to
* declarations of internal API functions and data.
*
* The primary use case for this option are single-CU builds, in which case
* this option can be set to `static`.
*/
/* #define MLK_CONFIG_INTERNAL_API_QUALIFIER */
/**
* MLK_CONFIG_CT_TESTING_ENABLED
*
* If set, mlkem-native annotates data as secret/public using valgrind's
* annotations VALGRIND_MAKE_MEM_UNDEFINED and VALGRIND_MAKE_MEM_DEFINED,
* enabling various checks for secret-dependent control flow or
* variable-time execution (depending on the exact version of valgrind
* installed).
*/
/* #define MLK_CONFIG_CT_TESTING_ENABLED */
/**
* MLK_CONFIG_NO_ASM
*
* If this option is set, mlkem-native will be built without use of native
* code or inline assembly.
*
* By default, inline assembly is used to implement value barriers. Without
* inline assembly, mlkem-native will use a global volatile 'opt blocker'
* instead; see verify.h.
*
* Inline assembly is also used to implement a secure zeroization function
* on non-Windows platforms. If this option is set and the target platform
* is not Windows, you MUST set MLK_CONFIG_CUSTOM_ZEROIZE and provide a
* custom zeroization function.
*
* If this option is set, MLK_CONFIG_USE_NATIVE_BACKEND_FIPS202 and
* MLK_CONFIG_USE_NATIVE_BACKEND_ARITH will be ignored, and no native
* backends will be used.
*/
/* #define MLK_CONFIG_NO_ASM */
/**
* MLK_CONFIG_NO_ASM_VALUE_BARRIER
*
* If this option is set, mlkem-native will be built without use of native
* code or inline assembly for value barriers.
*
* By default, inline assembly (if available) is used to implement value
* barriers. Without inline assembly, mlkem-native will use a global
* volatile 'opt blocker' instead; see verify.h.
*/
/* #define MLK_CONFIG_NO_ASM_VALUE_BARRIER */
/**
* MLK_CONFIG_KEYGEN_PCT
*
* Compliance with @[FIPS140_3_IG, p.87] requires a Pairwise Consistency
* Test (PCT) to be carried out on a freshly generated keypair before it
* can be exported.
*
* Set this option if such a check should be implemented. In this case,
* crypto_kem_keypair_derand and crypto_kem_keypair will return a non-zero
* error code if the PCT failed.
*
* @note This feature will drastically lower the performance of key
* generation.
*/
/* #define MLK_CONFIG_KEYGEN_PCT */
/**
* MLK_CONFIG_KEYGEN_PCT_BREAKAGE_TEST
*
* If this option is set, the user must provide a runtime function
* `static inline int mlk_break_pct() { ... }` to indicate whether the PCT
* should be made to fail.
*
* This option only has an effect if MLK_CONFIG_KEYGEN_PCT is set.
*/
/* #define MLK_CONFIG_KEYGEN_PCT_BREAKAGE_TEST
#if !defined(__ASSEMBLER__)
#include "src/sys.h"
static MLK_INLINE int mlk_break_pct(void)
{
... return 0/1 depending on whether PCT should be broken ...
}
#endif
*/
/**
* MLK_CONFIG_SERIAL_FIPS202_ONLY
*
* Set this to use a FIPS202 implementation with global state that supports
* only one active Keccak computation at a time (e.g. some hardware
* accelerators).
*
* If this option is set, batched Keccak operations are disabled for
* rejection sampling during matrix generation. Instead, matrix entries
* will be generated one at a time.
*
* This allows offloading Keccak computations to a hardware accelerator
* that holds only a single Keccak state locally, rather than requiring
* support for batched (4x) Keccak states.
*
* @note Depending on the target CPU, disabling batched Keccak may reduce
* performance when using software FIPS202 implementations. Only
* enable this when you have to.
*/
/* #define MLK_CONFIG_SERIAL_FIPS202_ONLY */
/**
* MLK_CONFIG_CONTEXT_PARAMETER
*
* Set this to add a context parameter that is provided to public API
* functions and is then available in custom callbacks.
*
* The type of the context parameter is configured via
* MLK_CONFIG_CONTEXT_PARAMETER_TYPE.
*/
/* #define MLK_CONFIG_CONTEXT_PARAMETER */
/**
* MLK_CONFIG_CONTEXT_PARAMETER_TYPE
*
* Set this to define the type for the context parameter used by
* MLK_CONFIG_CONTEXT_PARAMETER.
*
* This is only relevant if MLK_CONFIG_CONTEXT_PARAMETER is set.
*/
/* #define MLK_CONFIG_CONTEXT_PARAMETER_TYPE void* */
/************************* Config internals ********************************/
#endif /* MLK_BUILD_INTERNAL */
/* Default namespace
*
* Don't change this. If you need a different namespace, re-define
* MLK_CONFIG_NAMESPACE_PREFIX above instead, and remove the following.
*
* The default MLKEM namespace is
*
* PQCP_MLKEM_NATIVE_MLKEM<LEVEL>_
*
* e.g., PQCP_MLKEM_NATIVE_MLKEM512_
*/
#if MLK_CONFIG_PARAMETER_SET == 512
#define MLK_DEFAULT_NAMESPACE_PREFIX PQCP_MLKEM_NATIVE_MLKEM512
#elif MLK_CONFIG_PARAMETER_SET == 768
#define MLK_DEFAULT_NAMESPACE_PREFIX PQCP_MLKEM_NATIVE_MLKEM768
#elif MLK_CONFIG_PARAMETER_SET == 1024
#define MLK_DEFAULT_NAMESPACE_PREFIX PQCP_MLKEM_NATIVE_MLKEM1024
#endif
#endif /* !MLK_CONFIG_H */