diff options
author | lloyd <[email protected]> | 2008-10-01 16:54:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-01 16:54:45 +0000 |
commit | 18cd7bc53f62adaef05ec45c17a8b1b05af3dd05 (patch) | |
tree | 165b1e17b9882904b58e1fcb9a5139edf2dccf57 /src | |
parent | 7c2ceb15026deedde52308f446a05f049ce58d79 (diff) |
Avoid unused parameter warning when ECDSA is enabled in build
Diffstat (limited to 'src')
-rw-r--r-- | src/core/libstate/engine.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/libstate/engine.h b/src/core/libstate/engine.h index ea797b2bc..98e480d0e 100644 --- a/src/core/libstate/engine.h +++ b/src/core/libstate/engine.h @@ -88,14 +88,14 @@ class BOTAN_DLL Engine #endif #if defined(BOTAN_HAS_ECDSA) - virtual ECDSA_Operation* ecdsa_op(const EC_Domain_Params& dom_pars, - const BigInt& priv_key, - const PointGFp& pub_key) const + virtual ECDSA_Operation* ecdsa_op(const EC_Domain_Params&, + const BigInt&, + const PointGFp&) const { return 0; } - virtual ECKAEG_Operation* eckaeg_op(const EC_Domain_Params& dom_pars, - const BigInt& priv_key, - const PointGFp& pub_key) const + virtual ECKAEG_Operation* eckaeg_op(const EC_Domain_Params&, + const BigInt&, + const PointGFp&) const { return 0; } #endif |