mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
20 lines
532 B
C
20 lines
532 B
C
|
#ifndef PQCLEAN_QTESLAPIII_CLEAN_CONFIG_H
|
||
|
#define PQCLEAN_QTESLAPIII_CLEAN_CONFIG_H
|
||
|
|
||
|
/*************************************************************************************
|
||
|
* qTESLA: an efficient post-quantum signature scheme based on the R-LWE problem
|
||
|
*
|
||
|
* Abstract: configuration file
|
||
|
**************************************************************************************/
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#define RADIX 32
|
||
|
#define RADIX32 32
|
||
|
typedef uint32_t digit_t;
|
||
|
typedef int32_t sdigit_t;
|
||
|
|
||
|
#endif
|