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

15 lines
354 B
C
Raw Normal View History

#ifndef PQCLEAN_HQC2562CCA2_LEAKTIME_TENSOR_H
#define PQCLEAN_HQC2562CCA2_LEAKTIME_TENSOR_H
/**
* @file tensor.h
* @brief Header file for tensor.c
*/
#include <stdint.h>
void PQCLEAN_HQC2562CCA2_LEAKTIME_tensor_code_encode(uint8_t *em, const uint8_t *m);
void PQCLEAN_HQC2562CCA2_LEAKTIME_tensor_code_decode(uint8_t *m, const uint8_t *em);
#endif