diff options
Diffstat (limited to 'src/lib/prov/pkcs11')
-rw-r--r-- | src/lib/prov/pkcs11/info.txt | 5 | ||||
-rw-r--r-- | src/lib/prov/pkcs11/p11.h | 2 | ||||
-rw-r--r-- | src/lib/prov/pkcs11/pkcs11.h | 8 |
3 files changed, 9 insertions, 6 deletions
diff --git a/src/lib/prov/pkcs11/info.txt b/src/lib/prov/pkcs11/info.txt index 37a7f0d4d..2715c7cda 100644 --- a/src/lib/prov/pkcs11/info.txt +++ b/src/lib/prov/pkcs11/info.txt @@ -10,10 +10,13 @@ pk_pad <header:internal> p11_mechanism.h +</header:internal> + +<header:external> pkcs11.h pkcs11f.h pkcs11t.h -</header:internal> +</header:external> <header:public> p11.h diff --git a/src/lib/prov/pkcs11/p11.h b/src/lib/prov/pkcs11/p11.h index df077f62b..c18c07d59 100644 --- a/src/lib/prov/pkcs11/p11.h +++ b/src/lib/prov/pkcs11/p11.h @@ -50,7 +50,7 @@ #pragma pack(push, cryptoki, 1) #endif -#include <botan/internal/pkcs11.h> +#include "pkcs11.h" #if defined(_MSC_VER) #pragma pack(pop, cryptoki) diff --git a/src/lib/prov/pkcs11/pkcs11.h b/src/lib/prov/pkcs11/pkcs11.h index b42d46875..c66b0bca9 100644 --- a/src/lib/prov/pkcs11/pkcs11.h +++ b/src/lib/prov/pkcs11/pkcs11.h @@ -184,7 +184,7 @@ extern "C" { /* All the various Cryptoki types and #define'd values are in the * file pkcs11t.h. */ -#include <botan/internal/pkcs11t.h> +#include "pkcs11t.h" #define __PASTE(x,y) x##y @@ -201,7 +201,7 @@ extern "C" { /* pkcs11f.h has all the information about the Cryptoki * function prototypes. */ -#include <botan/internal/pkcs11f.h> +#include "pkcs11f.h" #undef CK_NEED_ARG_LIST #undef CK_PKCS11_FUNCTION_INFO @@ -221,7 +221,7 @@ extern "C" { /* pkcs11f.h has all the information about the Cryptoki * function prototypes. */ -#include <botan/internal/pkcs11f.h> +#include "pkcs11f.h" #undef CK_NEED_ARG_LIST #undef CK_PKCS11_FUNCTION_INFO @@ -247,7 +247,7 @@ struct CK_FUNCTION_LIST { /* pkcs11f.h has all the information about the Cryptoki * function prototypes. */ -#include <botan/internal/pkcs11f.h> +#include "pkcs11f.h" }; |