mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
21 lines
337 B
C
21 lines
337 B
C
|
#ifndef CODE_H
|
||
|
#define CODE_H
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @file code.h
|
||
|
* Header file of code.c
|
||
|
*/
|
||
|
|
||
|
#include "parameters.h"
|
||
|
#include "parameters.h"
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void PQCLEAN_HQCRMRS192_AVX2_code_encode(uint64_t *em, const uint64_t *message);
|
||
|
|
||
|
void PQCLEAN_HQCRMRS192_AVX2_code_decode(uint64_t *m, const uint64_t *em);
|
||
|
|
||
|
|
||
|
#endif
|