2019-01-16 09:15:18 +00:00
|
|
|
#ifndef API_H
|
2019-03-04 14:12:38 +00:00
|
|
|
#include <stdint.h>
|
2019-01-16 09:15:18 +00:00
|
|
|
#define API_H
|
|
|
|
|
2019-03-05 13:14:47 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2019-01-16 09:15:18 +00:00
|
|
|
#define MODE 2
|
|
|
|
|
|
|
|
#define CRYPTO_PUBLICKEYBYTES 1472U
|
|
|
|
#define CRYPTO_SECRETKEYBYTES 3504U
|
|
|
|
#define CRYPTO_BYTES 2701U
|
|
|
|
|
|
|
|
#define CRYPTO_ALGNAME "Dilithium-III"
|
|
|
|
|
2019-03-05 13:14:47 +00:00
|
|
|
int PQCLEAN_DILITHIUMIII_CLEAN_crypto_sign_keypair(uint8_t *pk,
|
|
|
|
uint8_t *sk);
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-03-05 13:14:47 +00:00
|
|
|
int PQCLEAN_DILITHIUMIII_CLEAN_crypto_sign(uint8_t *sm,
|
|
|
|
size_t *smlen,
|
|
|
|
const uint8_t *msg,
|
|
|
|
size_t len,
|
|
|
|
const uint8_t *sk);
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-03-05 13:14:47 +00:00
|
|
|
int PQCLEAN_DILITHIUMIII_CLEAN_crypto_sign_open(uint8_t *m,
|
|
|
|
size_t *mlen,
|
|
|
|
const uint8_t *sm,
|
|
|
|
size_t smlen,
|
|
|
|
const uint8_t *pk);
|
2019-01-16 09:15:18 +00:00
|
|
|
|
|
|
|
#endif
|