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

13 lines
392 B
C
Raw Normal View History

2019-12-06 15:16:41 +00:00
#ifndef PQCLEAN_DILITHIUM4_CLEAN_SIGN_H
#define PQCLEAN_DILITHIUM4_CLEAN_SIGN_H
2019-12-06 15:16:41 +00:00
#include "api.h"
#include "params.h"
#include "poly.h"
#include "polyvec.h"
2019-12-06 15:16:41 +00:00
void PQCLEAN_DILITHIUM4_CLEAN_expand_mat(polyvecl mat[K], const uint8_t rho[SEEDBYTES]);
void PQCLEAN_DILITHIUM4_CLEAN_challenge(poly *c, const uint8_t mu[CRHBYTES],
const polyveck *w1);
#endif