1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_sign/qtesla-p-I/clean/config.h

20 lines
528 B
C
Raw Normal View History

#ifndef PQCLEAN_QTESLAPI_CLEAN_CONFIG_H
#define PQCLEAN_QTESLAPI_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