diff options
author | Jack Lloyd <[email protected]> | 2017-09-19 13:07:29 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-19 22:30:44 -0400 |
commit | 2f4b1610dc0b273c66c494e7bbef0116d9fd6511 (patch) | |
tree | 34cd53c634d3eaab362382193757cbb247dcdae2 /src/lib/hash | |
parent | d179678fe398d9fba22b204a576747397e01d584 (diff) |
More annotations
Diffstat (limited to 'src/lib/hash')
-rw-r--r-- | src/lib/hash/sm3/sm3.h | 2 | ||||
-rw-r--r-- | src/lib/hash/streebog/streebog.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/hash/sm3/sm3.h b/src/lib/hash/sm3/sm3.h index dd76ab4d0..f065637a3 100644 --- a/src/lib/hash/sm3/sm3.h +++ b/src/lib/hash/sm3/sm3.h @@ -20,7 +20,7 @@ enum { /** * SM3 */ -class BOTAN_DLL SM3 final : public MDx_HashFunction +class BOTAN_PUBLIC_API(2,2) SM3 final : public MDx_HashFunction { public: std::string name() const override { return "SM3"; } diff --git a/src/lib/hash/streebog/streebog.h b/src/lib/hash/streebog/streebog.h index 5451dfbfe..1bc2cd9db 100644 --- a/src/lib/hash/streebog/streebog.h +++ b/src/lib/hash/streebog/streebog.h @@ -16,7 +16,7 @@ namespace Botan { * Streebog (GOST R 34.11-2012) * RFC 6986 */ -class BOTAN_DLL Streebog: public HashFunction +class BOTAN_PUBLIC_API(2,2) Streebog: public HashFunction { public: size_t output_length() const override { return m_output_bits / 8; } @@ -48,7 +48,7 @@ class BOTAN_DLL Streebog: public HashFunction /** * Streebog-256 */ -class BOTAN_DLL Streebog_256 final : public Streebog +class BOTAN_PUBLIC_API(2,2) Streebog_256 final : public Streebog { public: Streebog_256() : Streebog(256) {} @@ -57,7 +57,7 @@ class BOTAN_DLL Streebog_256 final : public Streebog /** * Streebog-512 */ -class BOTAN_DLL Streebog_512 final : public Streebog +class BOTAN_PUBLIC_API(2,2) Streebog_512 final : public Streebog { public: Streebog_512() : Streebog(512) {} |