#include "code.h" #include "parameters.h" #include "reed_muller.h" #include "reed_solomon.h" #include #include /** * @file code.c * @brief Implementation of concatenated code */ /** * * @brief Encoding the message m to a code word em using the concatenated code * * First we encode the message using the Reed-Solomon code, then with the duplicated Reed-Muller code we obtain * a concatenated code word. * * @param[out] em Pointer to an array that is the tensor code word * @param[in] m Pointer to an array that is the message */ void PQCLEAN_HQCRMRS192_CLEAN_code_encode(uint8_t *em, const uint8_t *m) { uint8_t tmp[VEC_N1_SIZE_BYTES] = {0}; PQCLEAN_HQCRMRS192_CLEAN_reed_solomon_encode(tmp, m); PQCLEAN_HQCRMRS192_CLEAN_reed_muller_encode(em, tmp); } /** * @brief Decoding the code word em to a message m using the concatenated code * * @param[out] m Pointer to an array that is the message * @param[in] em Pointer to an array that is the code word */ void PQCLEAN_HQCRMRS192_CLEAN_code_decode(uint8_t *m, const uint8_t *em) { uint8_t tmp[VEC_N1_SIZE_BYTES] = {0}; PQCLEAN_HQCRMRS192_CLEAN_reed_muller_decode(tmp, em); PQCLEAN_HQCRMRS192_CLEAN_reed_solomon_decode(m, tmp); }