1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_kem/hqc-rmrs-128/avx2/reed_solomon.h

21 lines
379 B
C
Raw Normal View History

2020-09-07 19:23:34 +01:00
#ifndef REED_SOLOMON_H
#define REED_SOLOMON_H
/**
* @file reed_solomon.h
* Header file of reed_solomon.c
*/
#include "parameters.h"
#include "parameters.h"
#include <stddef.h>
#include <stdint.h>
void PQCLEAN_HQCRMRS128_AVX2_reed_solomon_encode(uint64_t *cdw, const uint64_t *msg);
void PQCLEAN_HQCRMRS128_AVX2_reed_solomon_decode(uint64_t *msg, uint64_t *cdw);
#endif