3d5079129d
* rainbow update * update workflows * re-add /O2 in nmake Makefile
19 lines
402 B
C
19 lines
402 B
C
#ifndef _GF16_H_
|
|
#define _GF16_H_
|
|
|
|
#include "rainbow_config.h"
|
|
#include <stdint.h>
|
|
|
|
/// @file gf16.h
|
|
/// @brief Library for arithmetics in GF(16) and GF(256)
|
|
///
|
|
|
|
uint8_t PQCLEAN_RAINBOWICIRCUMZENITHAL_CLEAN_gf16_mul(uint8_t a, uint8_t b);
|
|
|
|
|
|
uint8_t PQCLEAN_RAINBOWICIRCUMZENITHAL_CLEAN_gf16_is_nonzero(uint8_t a);
|
|
uint8_t PQCLEAN_RAINBOWICIRCUMZENITHAL_CLEAN_gf16_inv(uint8_t a);
|
|
|
|
|
|
#endif // _GF16_H_
|