We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5039c5 commit dcbce53Copy full SHA for dcbce53
1 file changed
wolfcrypt/src/dilithium.c
@@ -8058,7 +8058,7 @@ static int dilithium_pub_from_priv(dilithium_key* key)
8058
dilithium_vec_decode_eta_bits(s1p, params->eta, s1, params->l);
8059
dilithium_vec_decode_eta_bits(s2p, params->eta, s2, params->k);
8060
8061
- dilithium_vec_ntt_small(s1, params->l);
+ dilithium_vec_ntt_small_full(s1, params->l);
8062
}
8063
8064
#else
@@ -8069,7 +8069,7 @@ static int dilithium_pub_from_priv(dilithium_key* key)
8069
else {
8070
s1 = key->s1;
8071
s2 = key->s2;
8072
- dilithium_vec_invntt_full(s2, params->k);
+ dilithium_vec_invntt_full(s2, params->k);
8073
8074
8075
#endif
0 commit comments