diff options
author | lloyd <lloyd@randombit.net> | 2010-03-13 19:31:27 +0000 |
---|---|---|
committer | lloyd <lloyd@randombit.net> | 2010-03-13 19:31:27 +0000 |
commit | 634f3d27f7faad1dc558821382f71ecc2194637d (patch) | |
tree | dd4e626a4ac3ff5c928460b9e133007023d3321c /src/pubkey/ecdsa/ecdsa.h | |
parent | 1fe724175fdad94d724d401c46b5187f5f539136 (diff) | |
parent | 72a154f3d7eef286b42a116232f8b7be88ccb6d6 (diff) |
propagate from branch 'net.randombit.botan' (head aabb4c3bc2207ceac1920573293b95d138a185df)
to branch 'net.randombit.botan.c++0x' (head 179172dd6952f15f832855f4ec0ac48cb1e08188)
Diffstat (limited to 'src/pubkey/ecdsa/ecdsa.h')
-rw-r--r-- | src/pubkey/ecdsa/ecdsa.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pubkey/ecdsa/ecdsa.h b/src/pubkey/ecdsa/ecdsa.h index e20a234fc..cb4893002 100644 --- a/src/pubkey/ecdsa/ecdsa.h +++ b/src/pubkey/ecdsa/ecdsa.h @@ -11,6 +11,7 @@ #define BOTAN_ECDSA_KEY_H__ #include <botan/ecc_key.h> +#include <botan/reducer.h> #include <botan/pk_ops.h> namespace Botan { @@ -102,6 +103,7 @@ class BOTAN_DLL ECDSA_Signature_Operation : public PK_Ops::Signature const PointGFp& base_point; const BigInt& order; const BigInt& x; + Modular_Reducer mod_order; }; class BOTAN_DLL ECDSA_Verification_Operation : public PK_Ops::Verification |