mirror of
https://github.com/polhenarejos/pico-keys-sdk
synced 2026-05-28 17:11:23 +02:00
28 lines
579 B
C
28 lines
579 B
C
/*
|
|
* Copyright (c) The mlkem-native project authors
|
|
* SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT
|
|
*/
|
|
|
|
#if !defined(MLK_ALL_H)
|
|
#define MLK_ALL_H
|
|
|
|
/* API for MLKEM-512 */
|
|
#define MLK_CONFIG_PARAMETER_SET 512
|
|
#include "mlkem_native.h"
|
|
#undef MLK_CONFIG_PARAMETER_SET
|
|
#undef MLK_H
|
|
|
|
/* API for MLKEM-768 */
|
|
#define MLK_CONFIG_PARAMETER_SET 768
|
|
#include "mlkem_native.h"
|
|
#undef MLK_CONFIG_PARAMETER_SET
|
|
#undef MLK_H
|
|
|
|
/* API for MLKEM-1024 */
|
|
#define MLK_CONFIG_PARAMETER_SET 1024
|
|
#include "mlkem_native.h"
|
|
#undef MLK_CONFIG_PARAMETER_SET
|
|
#undef MLK_H
|
|
|
|
#endif /* !MLK_ALL_H */
|