diff options
author | lloyd <[email protected]> | 2010-03-05 17:21:40 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-05 17:21:40 +0000 |
commit | df8c46ffb5554d8804287b340e06f79fbafe8d1d (patch) | |
tree | d0f047eee908f3b85ce2d5e6b9b19a9e55ea3757 /src/libstate/pk_engine.h | |
parent | 8df87a70435cae25e30f7045f7799537857e13d4 (diff) |
Add ops for ElGamal encryption and decryption.
Note: blinding is not currently being used for RSA, RW, DH or ElGamal,
which used to have them. This should be added back before release.
Diffstat (limited to 'src/libstate/pk_engine.h')
-rw-r--r-- | src/libstate/pk_engine.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/libstate/pk_engine.h b/src/libstate/pk_engine.h index 3bc1a90f1..8f38b2928 100644 --- a/src/libstate/pk_engine.h +++ b/src/libstate/pk_engine.h @@ -15,10 +15,6 @@ #include <botan/if_op.h> #endif -#if defined(BOTAN_HAS_ELGAMAL) - #include <botan/elg_op.h> -#endif - namespace Botan { class Algorithm_Factory; @@ -38,10 +34,6 @@ IF_Operation* if_op(const BigInt&, const BigInt&, const BigInt&, const BigInt&, const BigInt&); #endif -#if defined(BOTAN_HAS_ELGAMAL) -ELG_Operation* elg_op(const DL_Group&, const BigInt&, const BigInt&); -#endif - } } |