mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
13 lines
392 B
C
13 lines
392 B
C
#ifndef PQCLEAN_DILITHIUM4_CLEAN_SIGN_H
|
|
#define PQCLEAN_DILITHIUM4_CLEAN_SIGN_H
|
|
|
|
#include "api.h"
|
|
#include "params.h"
|
|
#include "poly.h"
|
|
#include "polyvec.h"
|
|
|
|
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
|