32 lines
656 B
C
32 lines
656 B
C
#ifndef API_H
|
|
#include <stdint.h>
|
|
#define API_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#define MODE 2
|
|
|
|
#define CRYPTO_PUBLICKEYBYTES 1472U
|
|
#define CRYPTO_SECRETKEYBYTES 3504U
|
|
#define CRYPTO_BYTES 2701U
|
|
|
|
#define CRYPTO_ALGNAME "Dilithium-III"
|
|
|
|
int PQCLEAN_DILITHIUMIII_CLEAN_crypto_sign_keypair(uint8_t *pk,
|
|
uint8_t *sk);
|
|
|
|
int PQCLEAN_DILITHIUMIII_CLEAN_crypto_sign(uint8_t *sm,
|
|
size_t *smlen,
|
|
const uint8_t *msg,
|
|
size_t len,
|
|
const uint8_t *sk);
|
|
|
|
int PQCLEAN_DILITHIUMIII_CLEAN_crypto_sign_open(uint8_t *m,
|
|
size_t *mlen,
|
|
const uint8_t *sm,
|
|
size_t smlen,
|
|
const uint8_t *pk);
|
|
|
|
#endif
|