diff options
author | Jack Lloyd <[email protected]> | 2019-06-07 09:39:46 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-06-07 12:49:22 -0400 |
commit | b5513cd0d95b0ed99c581900fea226771b74339c (patch) | |
tree | 8d7e4ac14e93a527bc654cd325188bc30d753d80 /src/lib/block | |
parent | 762a76edc0240d3028ed17b9fb6e394ab3eac6cf (diff) |
Officially deprecate headers
Create BOTAN_DEPRECATED_HEADER so we can warn about this consistently.
Shuffle around the filter headers so all of the concrete filters
are defined in filters.h instead of being spread across many headers.
Document which headers are deprecated as well as a list of headers which
will be made internal-only in a future major release.
Diffstat (limited to 'src/lib/block')
-rw-r--r-- | src/lib/block/threefish_512/threefish.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/block/threefish_512/threefish.h b/src/lib/block/threefish_512/threefish.h index 6b21e9fdd..f866a717f 100644 --- a/src/lib/block/threefish_512/threefish.h +++ b/src/lib/block/threefish_512/threefish.h @@ -8,6 +8,10 @@ #ifndef BOTAN_THREEFISH_H_ #define BOTAN_THREEFISH_H_ +// This header is deprecated and will be removed in a future major release + #include <botan/threefish_512.h> +BOTAN_DEPRECATED_HEADER(threefish.h) + #endif |