diff options
author | lloyd <[email protected]> | 2010-03-02 03:06:13 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-02 03:06:13 +0000 |
commit | 19e77947ee00b4db6b732ef3dabfdbb9ee2adfd6 (patch) | |
tree | 72e857635ad0f88d1229f598e8c2ae2f8a052755 /src/engine/engine.h | |
parent | 1fac460e94edf5c4dda296588a87476195f08c24 (diff) |
Kill ECKAEG_Op
Diffstat (limited to 'src/engine/engine.h')
-rw-r--r-- | src/engine/engine.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/engine/engine.h b/src/engine/engine.h index 8c1b9dd5f..ba5f95c27 100644 --- a/src/engine/engine.h +++ b/src/engine/engine.h @@ -39,11 +39,6 @@ #include <botan/elg_op.h> #endif -#if defined(BOTAN_HAS_ECKAEG) - #include <botan/eckaeg_op.h> - #include <botan/ec_dompar.h> -#endif - namespace Botan { class Algorithm_Factory; @@ -114,13 +109,6 @@ class BOTAN_DLL Engine virtual DH_Operation* dh_op(const DL_Group&, const BigInt&) const { return 0; } #endif - -#if defined(BOTAN_HAS_ECKAEG) - virtual ECKAEG_Operation* eckaeg_op(const EC_Domain_Params&, - const BigInt&, - const PointGFp&) const - { return 0; } -#endif }; } |