diff options
author | Jack Lloyd <[email protected]> | 2018-01-03 12:18:11 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-01-03 12:18:11 -0500 |
commit | a763fd97c32fb3f796bbafcfd72994ddbee0f6e1 (patch) | |
tree | c1da28615636ead6cb25c809f5418f33871cfb96 /src | |
parent | c697fe0a2f199b4ccc415f5a3e2d0182d91a8fa7 (diff) |
Avoid including x509_ext.h in pkcs10.h
No need, forward decl is sufficient.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/x509/pkcs10.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/x509/pkcs10.h b/src/lib/x509/pkcs10.h index 731402960..b3a75fd5e 100644 --- a/src/lib/x509/pkcs10.h +++ b/src/lib/x509/pkcs10.h @@ -11,7 +11,6 @@ #include <botan/x509_obj.h> #include <botan/x509_dn.h> -#include <botan/x509_ext.h> #include <botan/key_constraint.h> #include <botan/asn1_attribute.h> #include <botan/asn1_alt_name.h> @@ -19,6 +18,7 @@ namespace Botan { +class Extensions; struct PKCS10_Data; /** |