2019-06-22 17:17:07 +01:00
|
|
|
#ifndef _BLAS_U32_H_
|
|
|
|
#define _BLAS_U32_H_
|
|
|
|
/// @file blas_u32.h
|
|
|
|
/// @brief Inlined functions for implementing basic linear algebra functions for uint32 arch.
|
|
|
|
///
|
|
|
|
|
|
|
|
#include "rainbow_config.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2019-07-24 09:41:42 +01:00
|
|
|
void PQCLEAN_RAINBOWVCCYCLIC_CLEAN_gf256v_predicated_add_u32(uint8_t *accu_b, uint8_t predicate, const uint8_t *a, unsigned int _num_byte);
|
|
|
|
void PQCLEAN_RAINBOWVCCYCLIC_CLEAN_gf256v_add_u32(uint8_t *accu_b, const uint8_t *a, unsigned int _num_byte);
|
2019-06-22 17:17:07 +01:00
|
|
|
|
|
|
|
|
2019-07-24 09:41:42 +01:00
|
|
|
void PQCLEAN_RAINBOWVCCYCLIC_CLEAN_gf256v_mul_scalar_u32(uint8_t *a, uint8_t b, unsigned int _num_byte);
|
|
|
|
void PQCLEAN_RAINBOWVCCYCLIC_CLEAN_gf256v_madd_u32(uint8_t *accu_c, const uint8_t *a, uint8_t gf256_b, unsigned int _num_byte);
|
2019-06-22 17:17:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
#endif // _BLAS_U32_H_
|