aboutsummaryrefslogtreecommitdiffstats
path: root/include/x509_key.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-09-06 19:48:09 +0000
committerlloyd <[email protected]>2006-09-06 19:48:09 +0000
commite00227828d80f9c9a17ef236586211faa01e4193 (patch)
tree2573533839150184038b18d7789eaef1ee5dd904 /include/x509_key.h
parent7f176fd2259fcb395ca03751f19790eac15bd9ce (diff)
Split PK_Key into Public_Key and Private_Key; these new classes merge in
the interfaces previously included in X509_PublicKey and PKCS8_PrivateKey.
Diffstat (limited to 'include/x509_key.h')
-rw-r--r--include/x509_key.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/x509_key.h b/include/x509_key.h
index 330444097..c0b7c24d7 100644
--- a/include/x509_key.h
+++ b/include/x509_key.h
@@ -34,19 +34,6 @@ class X509_Decoder
virtual ~X509_Decoder() {}
};
-/*************************************************
-* X.509 Public Key *
-*************************************************/
-class X509_PublicKey : public virtual PK_Key
- {
- public:
- u64bit key_id() const;
-
- virtual X509_Encoder* x509_encoder() const = 0;
- virtual X509_Decoder* x509_decoder() = 0;
- virtual ~X509_PublicKey() {}
- };
-
namespace X509 {
/*************************************************