1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_sign/dilithium-iii/clean/rounding.h

12 lines
344 B
C
Raw Normal View History

2019-01-16 09:15:18 +00:00
#ifndef ROUNDING_H
#define ROUNDING_H
#include <stdint.h>
2019-01-22 16:38:22 +00:00
uint32_t PQCLEAN_DILITHIUMIII_power2round(uint32_t a, uint32_t *a0);
uint32_t PQCLEAN_DILITHIUMIII_decompose(uint32_t a, uint32_t *a0);
unsigned int PQCLEAN_DILITHIUMIII_make_hint(uint32_t a, uint32_t b);
uint32_t PQCLEAN_DILITHIUMIII_use_hint(uint32_t a, unsigned int hint);
2019-01-16 09:15:18 +00:00
#endif