4f86c39515
* Update Dilithium * Alternative montgomery reduce to avoid i386 functest errors * Explicit casts for msvc * More casts; bump upstream version; fix metadata * another cast
15 lines
424 B
C
15 lines
424 B
C
#ifndef PQCLEAN_DILITHIUM2_CLEAN_ROUNDING_H
|
|
#define PQCLEAN_DILITHIUM2_CLEAN_ROUNDING_H
|
|
#include "params.h"
|
|
#include <stdint.h>
|
|
|
|
int32_t PQCLEAN_DILITHIUM2_CLEAN_power2round(int32_t *a0, int32_t a);
|
|
|
|
int32_t PQCLEAN_DILITHIUM2_CLEAN_decompose(int32_t *a0, int32_t a);
|
|
|
|
unsigned int PQCLEAN_DILITHIUM2_CLEAN_make_hint(int32_t a0, int32_t a1);
|
|
|
|
int32_t PQCLEAN_DILITHIUM2_CLEAN_use_hint(int32_t a, unsigned int hint);
|
|
|
|
#endif
|