diff options
Diffstat (limited to 'src/lib/hash/streebog/streebog.h')
-rw-r--r-- | src/lib/hash/streebog/streebog.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/hash/streebog/streebog.h b/src/lib/hash/streebog/streebog.h index a573964d8..87b9608ac 100644 --- a/src/lib/hash/streebog/streebog.h +++ b/src/lib/hash/streebog/streebog.h @@ -10,15 +10,13 @@ #include <botan/hash.h> -BOTAN_FUTURE_INTERNAL_HEADER(streebog.h) - namespace Botan { /** * Streebog (GOST R 34.11-2012) * RFC 6986 */ -class BOTAN_PUBLIC_API(2,2) Streebog : public HashFunction +class Streebog : public HashFunction { public: size_t output_length() const override { return m_output_bits / 8; } @@ -52,7 +50,7 @@ class BOTAN_PUBLIC_API(2,2) Streebog : public HashFunction /** * Streebog-256 */ -class BOTAN_PUBLIC_API(2,2) Streebog_256 final : public Streebog +class Streebog_256 final : public Streebog { public: Streebog_256() : Streebog(256) {} @@ -61,7 +59,7 @@ class BOTAN_PUBLIC_API(2,2) Streebog_256 final : public Streebog /** * Streebog-512 */ -class BOTAN_PUBLIC_API(2,2) Streebog_512 final : public Streebog +class Streebog_512 final : public Streebog { public: Streebog_512() : Streebog(512) {} |