1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_sign/dilithium-iii/clean/sign.h

29 lines
959 B
C
Raw Normal View History

2019-01-16 09:15:18 +00:00
#ifndef SIGN_H
#define SIGN_H
#include "params.h"
#include "poly.h"
#include "polyvec.h"
2019-01-22 16:38:22 +00:00
void PQCLEAN_DILITHIUMIII_expand_mat(polyvecl mat[K],
const unsigned char rho[SEEDBYTES]);
void PQCLEAN_DILITHIUMIII_challenge(poly *c, const unsigned char mu[CRHBYTES],
const polyveck *w1);
2019-01-16 09:15:18 +00:00
2019-01-22 16:38:22 +00:00
int PQCLEAN_DILITHIUMIII_crypto_sign_keypair(unsigned char *pk,
unsigned char *sk);
2019-01-16 09:15:18 +00:00
2019-01-22 16:38:22 +00:00
int PQCLEAN_DILITHIUMIII_crypto_sign(unsigned char *sm,
unsigned long long *smlen,
const unsigned char *m,
unsigned long long mlen,
const unsigned char *sk);
2019-01-16 09:15:18 +00:00
2019-01-22 16:38:22 +00:00
int PQCLEAN_DILITHIUMIII_crypto_sign_open(unsigned char *m,
unsigned long long *mlen,
const unsigned char *sm,
unsigned long long smlen,
const unsigned char *pk);
2019-01-16 09:15:18 +00:00
#endif