diff options
author | lloyd <[email protected]> | 2006-07-31 03:30:23 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-07-31 03:30:23 +0000 |
commit | bc7e4f4e47197f2f3573b256f74edf4d61a47348 (patch) | |
tree | c16a0d6ba0fa81f60ecbd86505680fea25ca6402 /include/x509_ca.h | |
parent | 64222356ca5a9ce94d27811d158adab5b813bd4b (diff) |
Move include of x509_ext.h to x509_ca.h, instead of using forward
declaration.
Remove not_before and not_after variables, as they were only used once.
Use the computed Key_Constraints value when signing a new certificate.
Diffstat (limited to 'include/x509_ca.h')
-rw-r--r-- | include/x509_ca.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/x509_ca.h b/include/x509_ca.h index f799b05d8..e1c31b09a 100644 --- a/include/x509_ca.h +++ b/include/x509_ca.h @@ -8,6 +8,7 @@ #include <botan/x509cert.h> #include <botan/x509_crl.h> +#include <botan/x509_ext.h> #include <botan/pkcs8.h> #include <botan/pkcs10.h> #include <botan/pubkey.h> @@ -32,7 +33,7 @@ class X509_CA const MemoryRegion<byte>&, const X509_Time&, const X509_Time&, const X509_DN&, const X509_DN&, - const class Extensions&); + const Extensions&); X509_CA(const X509_Certificate&, const PKCS8_PrivateKey&); ~X509_CA(); |