mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
15 lines
378 B
C
15 lines
378 B
C
|
#ifndef PQCLEAN_HQC1281CCA2_LEAKTIME_REPETITION_H
|
||
|
#define PQCLEAN_HQC1281CCA2_LEAKTIME_REPETITION_H
|
||
|
|
||
|
/**
|
||
|
* @file repetition.h
|
||
|
* @brief Header file for repetition.c
|
||
|
*/
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void PQCLEAN_HQC1281CCA2_LEAKTIME_repetition_code_encode(uint8_t *em, const uint8_t *m);
|
||
|
void PQCLEAN_HQC1281CCA2_LEAKTIME_repetition_code_decode(uint8_t *m, const uint8_t *em);
|
||
|
|
||
|
#endif
|