aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/ecc_key
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-02 00:34:25 +0000
committerlloyd <[email protected]>2010-03-02 00:34:25 +0000
commit3435b04adf83c714d9907e85135db30a0e1d07c4 (patch)
treeb75ac5b16f738e1806319031c2d37f7149bf82e6 /src/pubkey/ecc_key
parentdd4984b39fb4d5e43cc9ba97f7180b0780c04217 (diff)
Remove a fairly useless member of EC_PublicKey that was only used for
handling ImplicitCA ECDSA keys in the CVC code. Currently dealt with in CVC by simply commenting out the calls - CVC is already pretty broken and I'd much rather have ECC sane and under control and CVC totally broken than ECC remaining in its current state.
Diffstat (limited to 'src/pubkey/ecc_key')
-rw-r--r--src/pubkey/ecc_key/ecc_key.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pubkey/ecc_key/ecc_key.h b/src/pubkey/ecc_key/ecc_key.h
index 4e97a427f..f61e4a2dc 100644
--- a/src/pubkey/ecc_key/ecc_key.h
+++ b/src/pubkey/ecc_key/ecc_key.h
@@ -100,8 +100,6 @@ class BOTAN_DLL EC_PublicKey : public virtual Public_Key
protected:
virtual void X509_load_hook();
- SecureVector<byte> m_enc_public_point; // stores the public point
-
std::auto_ptr<EC_Domain_Params> mp_dom_pars;
std::auto_ptr<PointGFp> mp_public_point;
EC_Domain_Params_Encoding m_param_enc;