14 lines
278 B
C
14 lines
278 B
C
|
#ifndef PQCLEAN_MCELIECE8192128_CLEAN_PK_GEN_H
|
||
|
#define PQCLEAN_MCELIECE8192128_CLEAN_PK_GEN_H
|
||
|
/*
|
||
|
This file is for public-key generation
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
int PQCLEAN_MCELIECE8192128_CLEAN_pk_gen(uint8_t * /*pk*/, uint32_t * /*perm*/, const uint8_t * /*sk*/);
|
||
|
|
||
|
#endif
|
||
|
|