1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-27 01:41:40 +00:00
pqcrypto/crypto_kem/mceliece/mceliece8192128/clean/sk_gen.h

17 lines
333 B
C

#ifndef PQCLEAN_MCELIECE8192128_CLEAN_SK_GEN_H
#define PQCLEAN_MCELIECE8192128_CLEAN_SK_GEN_H
/*
This file is for secret-key generation
*/
#include "gf.h"
#include <stdint.h>
int PQCLEAN_MCELIECE8192128_CLEAN_genpoly_gen(gf * /*out*/, gf * /*f*/);
int PQCLEAN_MCELIECE8192128_CLEAN_perm_check(const uint32_t * /*p*/);
#endif