diff options
author | Jack Lloyd <[email protected]> | 2016-12-04 15:41:18 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-12-04 15:41:18 -0500 |
commit | a681421d01ea132ea3461f99641daacd9bd64df9 (patch) | |
tree | 74db1814275bc3f556fab326ffea9c84dfdbf92c /src/lib/prov/pkcs11/p11_ecdh.cpp | |
parent | 786e3100649d913ab0bbf223c53624c4beb38e35 (diff) |
Expose pk_ops.h as public interface again
I was initially thinking of Botan as somewhat closed system, but
@cordney has a legit use case of wanting to expose a TPM sign
operation, but using their internal TPM library and TPM key type.
This requires the API be exposed so the derivation can occur.
Add a comment in the header explaining that the header is not for
normal application use and directing them to pubkey.h
This basically reverts 2747e8e23aec43162
Diffstat (limited to 'src/lib/prov/pkcs11/p11_ecdh.cpp')
-rw-r--r-- | src/lib/prov/pkcs11/p11_ecdh.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/prov/pkcs11/p11_ecdh.cpp b/src/lib/prov/pkcs11/p11_ecdh.cpp index 474d1dac0..f2604185d 100644 --- a/src/lib/prov/pkcs11/p11_ecdh.cpp +++ b/src/lib/prov/pkcs11/p11_ecdh.cpp @@ -13,7 +13,7 @@ #include <botan/internal/p11_mechanism.h> #include <botan/ber_dec.h> #include <botan/der_enc.h> -#include <botan/internal/pk_ops.h> +#include <botan/pk_ops.h> #include <botan/rng.h> namespace Botan { |