aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pk_pad/emsa.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2020-11-05 03:47:06 -0500
committerJack Lloyd <[email protected]>2020-11-06 11:31:22 -0500
commita55e4b22b6cbeeb30ca787d4ea4e3933ccccbdf1 (patch)
tree3d066440f30d30a46179caded3f1273d06a4dd95 /src/lib/pk_pad/emsa.cpp
parent7c27982e27b953682554de3c4b22843e0e7461e7 (diff)
Remove deprecated headers, make more headers internal
Now modules default to internal headers instead of defaulting to public; making a new public API should be a visible and intentional choice. Brings the public header count from over 300 to around 150. Also removes the deprecated tls_blocking interface
Diffstat (limited to 'src/lib/pk_pad/emsa.cpp')
-rw-r--r--src/lib/pk_pad/emsa.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/pk_pad/emsa.cpp b/src/lib/pk_pad/emsa.cpp
index a3e448686..9394d1e18 100644
--- a/src/lib/pk_pad/emsa.cpp
+++ b/src/lib/pk_pad/emsa.cpp
@@ -4,33 +4,33 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
-#include <botan/emsa.h>
+#include <botan/internal/emsa.h>
#include <botan/hash.h>
#include <botan/scan_name.h>
#include <botan/exceptn.h>
#if defined(BOTAN_HAS_EMSA1)
- #include <botan/emsa1.h>
+ #include <botan/internal/emsa1.h>
#endif
#if defined(BOTAN_HAS_EMSA_X931)
- #include <botan/emsa_x931.h>
+ #include <botan/internal/emsa_x931.h>
#endif
#if defined(BOTAN_HAS_EMSA_PKCS1)
- #include <botan/emsa_pkcs1.h>
+ #include <botan/internal/emsa_pkcs1.h>
#endif
#if defined(BOTAN_HAS_EMSA_PSSR)
- #include <botan/pssr.h>
+ #include <botan/internal/pssr.h>
#endif
#if defined(BOTAN_HAS_EMSA_RAW)
- #include <botan/emsa_raw.h>
+ #include <botan/internal/emsa_raw.h>
#endif
#if defined(BOTAN_HAS_ISO_9796)
- #include <botan/iso9796.h>
+ #include <botan/internal/iso9796.h>
#endif
namespace Botan {