aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-06-23 06:15:32 +0000
committerlloyd <[email protected]>2006-06-23 06:15:32 +0000
commitf78c757011fd8834741ffca526bef55d41dcf9dc (patch)
treef2ad5240db73e25ed9dde0c647588e3d462fec07 /include
parente5ca797c1abc70c14344c3e5647a39f3a08f33db (diff)
Use Data_Store in X509_CRL
Diffstat (limited to 'include')
-rw-r--r--include/x509_crl.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/x509_crl.h b/include/x509_crl.h
index 7d8a3e3cb..bd0ac75a7 100644
--- a/include/x509_crl.h
+++ b/include/x509_crl.h
@@ -39,11 +39,9 @@ class X509_CRL : public X509_Object
X509_CRL(const std::string&);
private:
void handle_crl_extension(const Extension&);
+
std::vector<CRL_Entry> revoked;
- MemoryVector<byte> issuer_key_id;
- X509_Time start, end;
- X509_DN issuer;
- u32bit version, crl_count;
+ Data_Store info;
};
}