17 lines
325 B
C
17 lines
325 B
C
|
#ifndef PQCLEAN_MCELIECE348864F_SSE_SK_GEN_H
|
||
|
#define PQCLEAN_MCELIECE348864F_SSE_SK_GEN_H
|
||
|
/*
|
||
|
This file is for secret-key generation
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "gf.h"
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
int PQCLEAN_MCELIECE348864F_SSE_genpoly_gen(gf * /*out*/, gf * /*f*/);
|
||
|
int PQCLEAN_MCELIECE348864F_SSE_perm_check(const uint32_t * /*p*/);
|
||
|
|
||
|
#endif
|
||
|
|