diff options
author | Jack Lloyd <[email protected]> | 2016-09-21 11:12:11 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-09-21 11:12:11 -0400 |
commit | afe735aee31bfc7916305e285d7aa73df070de52 (patch) | |
tree | 8297697ddd82d80c019717796b976c74da6226d3 /src/lib/pubkey/dh | |
parent | 12483c295d393ffb2e151187a45839ba9e1f489c (diff) |
Maintainer mode fixes.
Mostly unused args and missing override notations.
Fix DH - load_check calls were commented out for debugging.
Diffstat (limited to 'src/lib/pubkey/dh')
-rw-r--r-- | src/lib/pubkey/dh/dh.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/pubkey/dh/dh.cpp b/src/lib/pubkey/dh/dh.cpp index 763e1f20b..8ed79aa3d 100644 --- a/src/lib/pubkey/dh/dh.cpp +++ b/src/lib/pubkey/dh/dh.cpp @@ -58,7 +58,7 @@ DH_PrivateKey::DH_PrivateKey(RandomNumberGenerator& rng, } else { - //load_check(rng); + load_check(rng); } } @@ -73,7 +73,7 @@ DH_PrivateKey::DH_PrivateKey(const AlgorithmIdentifier& alg_id, if(m_y == 0) m_y = power_mod(group_g(), m_x, group_p()); - //load_check(rng); + load_check(rng); } /* |