pqc/crypto_kem/hqc-rmrs-128/clean/reed_solomon.h
2020-09-07 16:10:13 -04:00

21 lines
381 B
C

#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_CLEAN_reed_solomon_encode(uint64_t *cdw, const uint64_t *msg);
void PQCLEAN_HQCRMRS128_CLEAN_reed_solomon_decode(uint64_t *msg, uint64_t *cdw);
#endif