aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/ecc_key/ecc_key.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-04 03:56:49 +0000
committerlloyd <[email protected]>2010-03-04 03:56:49 +0000
commitea2b48cca1ef37815742577bfd692397bdcf8d13 (patch)
tree863933a7a0fc21ccee07dda33ac0806984ee0929 /src/pubkey/ecc_key/ecc_key.h
parente998558e1fa903b32155b694107082fff25f9c0e (diff)
Remove load hooks from ECC classes, unused
Diffstat (limited to 'src/pubkey/ecc_key/ecc_key.h')
-rw-r--r--src/pubkey/ecc_key/ecc_key.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pubkey/ecc_key/ecc_key.h b/src/pubkey/ecc_key/ecc_key.h
index e9cd7f68b..295de2797 100644
--- a/src/pubkey/ecc_key/ecc_key.h
+++ b/src/pubkey/ecc_key/ecc_key.h
@@ -82,8 +82,6 @@ class BOTAN_DLL EC_PublicKey : public virtual Public_Key
protected:
EC_PublicKey() : domain_encoding(EC_DOMPAR_ENC_EXPLICIT) {}
- virtual void X509_load_hook();
-
EC_Domain_Params domain_params;
PointGFp public_key;
EC_Domain_Params_Encoding domain_encoding;
@@ -117,8 +115,6 @@ class BOTAN_DLL EC_PrivateKey : public virtual EC_PublicKey,
protected:
EC_PrivateKey() {}
- virtual void PKCS8_load_hook(bool = false);
-
BigInt private_key;
};