13 lines
283 B
C
13 lines
283 B
C
|
#ifndef PQCLEAN_MCELIECE6688128_AVX_PK_GEN_H
|
||
|
#define PQCLEAN_MCELIECE6688128_AVX_PK_GEN_H
|
||
|
/*
|
||
|
This file is for public-key generation
|
||
|
*/
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
int PQCLEAN_MCELIECE6688128_AVX_pk_gen(unsigned char * /*pk*/, uint32_t * /*perm*/, const unsigned char * /*sk*/);
|
||
|
|
||
|
#endif
|
||
|
|