1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_kem/hqc-256-3-cca2/leaktime/bch.h

17 lines
388 B
C
Raw Normal View History

#ifndef PQCLEAN_HQC2563CCA2_LEAKTIME_BCH_H
#define PQCLEAN_HQC2563CCA2_LEAKTIME_BCH_H
/**
* @file bch.h
* Header file of bch.c
*/
#include "parameters.h"
#include <stddef.h>
#include <stdint.h>
void PQCLEAN_HQC2563CCA2_LEAKTIME_bch_code_encode(uint8_t *codeword, const uint8_t *message);
void PQCLEAN_HQC2563CCA2_LEAKTIME_bch_code_decode(uint8_t *message, uint8_t *vector);
#endif