diff options
author | Daniel Seither <[email protected]> | 2015-07-30 19:15:22 +0200 |
---|---|---|
committer | Daniel Seither <[email protected]> | 2015-07-30 19:15:22 +0200 |
commit | f2edce7bf7fd2132e1a153093df4d47d5f57efcc (patch) | |
tree | 596f618d70b8be96922e662f17d91c6c996d835e /src/lib/pubkey/dsa/dsa.cpp | |
parent | e44e6b50e98628e385f59de4b61b4b4733fc1816 (diff) |
pubkey: Add missing overrides
Diffstat (limited to 'src/lib/pubkey/dsa/dsa.cpp')
-rw-r--r-- | src/lib/pubkey/dsa/dsa.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/pubkey/dsa/dsa.cpp b/src/lib/pubkey/dsa/dsa.cpp index 90cc18fdc..ec0830533 100644 --- a/src/lib/pubkey/dsa/dsa.cpp +++ b/src/lib/pubkey/dsa/dsa.cpp @@ -148,9 +148,9 @@ class DSA_Verification_Operation : public PK_Ops::Verification_with_EMSA mod_q = Modular_Reducer(dsa.group_q()); } - size_t message_parts() const { return 2; } - size_t message_part_size() const { return q.bytes(); } - size_t max_input_bits() const { return q.bits(); } + size_t message_parts() const override { return 2; } + size_t message_part_size() const override { return q.bytes(); } + size_t max_input_bits() const override { return q.bits(); } bool with_recovery() const override { return false; } |