1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_kem/hqc-rmrs-256/clean/reed_solomon.h
2021-03-24 21:02:47 +00: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_HQCRMRS256_CLEAN_reed_solomon_encode(uint64_t *cdw, const uint64_t *msg);
void PQCLEAN_HQCRMRS256_CLEAN_reed_solomon_decode(uint64_t *msg, uint64_t *cdw);
#endif