@@ -41,7 +41,7 @@ by `MLK_CONFIG_PARAMETER_SET`) every time.
41
41
```
42
42
43
43
Note the setting `MLK_CONFIG_MULTILEVEL_WITH_SHARED` which forces the inclusion of all level-independent
44
- code in the MLKEM -512 build, and the setting `MLK_CONFIG_MULTILEVEL_NO_SHARED`, which drops all
44
+ code in the ML-KEM -512 build, and the setting `MLK_CONFIG_MULTILEVEL_NO_SHARED`, which drops all
45
45
level-independent code in the subsequent builds. Finally, `MLK_CONFIG_MONOBUILD_KEEP_SHARED_HEADERS` entails that
46
46
`mlkem_native.c` does not `#undefine` the `#define` clauses from level-independent files.
47
47
@@ -54,23 +54,23 @@ would lead to name-clashes upon multiple use.
54
54
```C
55
55
#define MLK_CONFIG_API_NO_SUPERCOP
56
56
57
- /* API for MLKEM -512 */
57
+ /* API for ML-KEM -512 */
58
58
#define MLK_CONFIG_API_PARAMETER_SET 512
59
59
#define MLK_CONFIG_API_NAMESPACE_PREFIX mlkem512
60
60
#include <mlkem_native.h>
61
61
#undef MLK_CONFIG_API_PARAMETER_SET
62
62
#undef MLK_CONFIG_API_NAMESPACE_PREFIX
63
63
#undef MLK_H
64
64
65
- /* API for MLKEM -768 */
65
+ /* API for ML-KEM -768 */
66
66
#define MLK_CONFIG_API_PARAMETER_SET 768
67
67
#define MLK_CONFIG_API_NAMESPACE_PREFIX mlkem768
68
68
#include <mlkem_native.h>
69
69
#undef MLK_CONFIG_API_PARAMETER_SET
70
70
#undef MLK_CONFIG_API_NAMESPACE_PREFIX
71
71
#undef MLK_H
72
72
73
- /* API for MLKEM -1024 */
73
+ /* API for ML-KEM -1024 */
74
74
#define MLK_CONFIG_API_PARAMETER_SET 1024
75
75
#define MLK_CONFIG_API_NAMESPACE_PREFIX mlkem1024
76
76
#include <mlkem_native.h>
0 commit comments