diff options
author | Jack Lloyd <[email protected]> | 2020-11-05 03:47:06 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-11-06 11:31:22 -0500 |
commit | a55e4b22b6cbeeb30ca787d4ea4e3933ccccbdf1 (patch) | |
tree | 3d066440f30d30a46179caded3f1273d06a4dd95 /src/lib/mac/poly1305/poly1305.h | |
parent | 7c27982e27b953682554de3c4b22843e0e7461e7 (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/mac/poly1305/poly1305.h')
-rw-r--r-- | src/lib/mac/poly1305/poly1305.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/mac/poly1305/poly1305.h b/src/lib/mac/poly1305/poly1305.h index fdd01ecd1..7c1c68c5e 100644 --- a/src/lib/mac/poly1305/poly1305.h +++ b/src/lib/mac/poly1305/poly1305.h @@ -11,15 +11,13 @@ #include <botan/mac.h> #include <memory> -BOTAN_FUTURE_INTERNAL_HEADER(poly1305.h) - namespace Botan { /** * DJB's Poly1305 * Important note: each key can only be used once */ -class BOTAN_PUBLIC_API(2,0) Poly1305 final : public MessageAuthenticationCode +class Poly1305 final : public MessageAuthenticationCode { public: std::string name() const override { return "Poly1305"; } |