Skip to content

Commit

Permalink
Cache the result of ntt(t1 << D) in the verification op
Browse files Browse the repository at this point in the history
t1 is part of the public key and thus independent of any other verification input.
Precomputing it saves about 20% of verification runtime when performing more than
a single verification with the same Botan::PK_Verifier.

Co-Authored-By: Fabian Albert <[email protected]>
  • Loading branch information
reneme and FAlbertDev committed Jun 26, 2024
1 parent a73f47b commit ae4298c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/pubkey/dilithium/dilithium_common/dilithium.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ class Dilithium_Verification_Operation final : public PK_Ops::Verification {
Dilithium_Verification_Operation(std::shared_ptr<Dilithium_PublicKeyInternal> pubkey) :
m_pub_key(std::move(pubkey)),
m_A(dilithium_expand_A(m_pub_key->rho(), m_pub_key->mode())),
m_t1_ntt_shifted(ntt(m_pub_key->t1() << DilithiumConstants::D)),
m_h(m_pub_key->mode().symmetric_primitives().get_message_hash(m_pub_key->tr())) {}

void update(const uint8_t msg[], size_t msg_len) override { m_h.update({msg, msg_len}); }
Expand Down Expand Up @@ -315,7 +316,7 @@ class Dilithium_Verification_Operation final : public PK_Ops::Verification {

const auto c_hat = ntt(dilithium_sample_in_ball(c1, mode));
auto w_approx = m_A * ntt(std::move(z));
w_approx -= c_hat * ntt(m_pub_key->t1() << DilithiumConstants::D);
w_approx -= c_hat * m_t1_ntt_shifted;
w_approx.reduce();
auto w1 = inverse_ntt(std::move(w_approx));
w1.conditional_add_q();
Expand All @@ -332,6 +333,7 @@ class Dilithium_Verification_Operation final : public PK_Ops::Verification {
private:
std::shared_ptr<Dilithium_PublicKeyInternal> m_pub_key;
DilithiumPolyMatNTT m_A;
DilithiumPolyVecNTT m_t1_ntt_shifted;
DilithiumMessageHash m_h;
};

Expand Down

0 comments on commit ae4298c

Please sign in to comment.