mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
22 lines
329 B
C
22 lines
329 B
C
#ifndef BCH_H
|
|
#define BCH_H
|
|
|
|
|
|
/**
|
|
* @file bch.h
|
|
* Header file of bch.c
|
|
*/
|
|
|
|
#include "parameters.h"
|
|
#include "parameters.h"
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
void PQCLEAN_HQC192_AVX2_bch_code_decode(uint64_t *message, uint64_t *vector);
|
|
|
|
|
|
void PQCLEAN_HQC192_AVX2_table_alphaij_generation(const uint16_t *exp);
|
|
|
|
|
|
#endif
|