56a0fcb135
* Copied qTESLA-p-I round2 (2019-08-19) code * Code compiles, NIST-KAT works * Included detached signature API * Generated testvectors * Fixed name in api.h * code style * Fixed error in Makefile * Passing pytest * Fixing types (uint8_t bytes and size_t indices) * Replaced SHAKE with SHAKE128 where necessary * Fixed bug: (signed) integer overflow * Added qTESLA-p-III * Code is now independent of machine endianness * repaired Microsoft makefile
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
#ifndef PQCLEAN_QTESLAPI_CLEAN_API_H
|
|
#define PQCLEAN_QTESLAPI_CLEAN_API_H
|
|
|
|
/*************************************************************************************
|
|
* qTESLA: an efficient post-quantum signature scheme based on the R-LWE problem
|
|
*
|
|
* Abstract: API header file
|
|
**************************************************************************************/
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#define PQCLEAN_QTESLAPI_CLEAN_CRYPTO_SECRETKEYBYTES 5184
|
|
#define PQCLEAN_QTESLAPI_CLEAN_CRYPTO_PUBLICKEYBYTES 14880
|
|
#define PQCLEAN_QTESLAPI_CLEAN_CRYPTO_BYTES 2592
|
|
#define PQCLEAN_QTESLAPI_CLEAN_CRYPTO_ALGNAME "qTESLA-p-I"
|
|
|
|
int PQCLEAN_QTESLAPI_CLEAN_crypto_sign_keypair(
|
|
uint8_t *pk, uint8_t *sk);
|
|
|
|
int PQCLEAN_QTESLAPI_CLEAN_crypto_sign(
|
|
uint8_t *sm, size_t *smlen,
|
|
const uint8_t *m, size_t mlen,
|
|
const uint8_t *sk);
|
|
|
|
int PQCLEAN_QTESLAPI_CLEAN_crypto_sign_open(
|
|
uint8_t *m, size_t *mlen,
|
|
const uint8_t *sm, size_t smlen,
|
|
const uint8_t *pk
|
|
);
|
|
|
|
int PQCLEAN_QTESLAPI_CLEAN_crypto_sign_signature(
|
|
uint8_t *sig, size_t *siglen,
|
|
const uint8_t *m, size_t mlen,
|
|
const uint8_t *sk);
|
|
|
|
int PQCLEAN_QTESLAPI_CLEAN_crypto_sign_verify(
|
|
const uint8_t *sig, size_t siglen,
|
|
const uint8_t *m, size_t mlen,
|
|
const uint8_t *pk);
|
|
|
|
#endif
|