diff options
author | Jack Lloyd <[email protected]> | 2018-06-21 20:19:29 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-06-21 20:19:29 -0400 |
commit | e8cc1522ff854b592fd3b7f690f2717143848ea8 (patch) | |
tree | 904cf3d3cb67d1a35eaf29cb05a04dfc97a9d396 /src/lib/pubkey | |
parent | 49486ffd4a4da10227271d815a8d5b4b11656c54 (diff) |
Remove outdated comment [ci skip]
Diffstat (limited to 'src/lib/pubkey')
-rw-r--r-- | src/lib/pubkey/ec_group/point_mul.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/pubkey/ec_group/point_mul.cpp b/src/lib/pubkey/ec_group/point_mul.cpp index dc83730c9..0124c70ef 100644 --- a/src/lib/pubkey/ec_group/point_mul.cpp +++ b/src/lib/pubkey/ec_group/point_mul.cpp @@ -250,7 +250,6 @@ PointGFp PointGFp_Var_Point_Precompute::mul(const BigInt& k, { windows--; - // cache side channel here, we are relying on blinding... const uint32_t w = scalar.get_substring(windows*m_window_bits, m_window_bits); clear_mem(e.data(), e.size()); @@ -278,7 +277,6 @@ PointGFp PointGFp_Var_Point_Precompute::mul(const BigInt& k, { R.mult2i(m_window_bits, ws); - // cache side channel here, we are relying on blinding... const uint32_t w = scalar.get_substring((windows-1)*m_window_bits, m_window_bits); clear_mem(e.data(), e.size()); |