diff options
Diffstat (limited to 'src/lib/block')
-rw-r--r-- | src/lib/block/aria/aria.h | 6 | ||||
-rw-r--r-- | src/lib/block/shacal2/shacal2.h | 2 | ||||
-rw-r--r-- | src/lib/block/sm4/sm4.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/block/aria/aria.h b/src/lib/block/aria/aria.h index 3058b2a5e..17d665e9e 100644 --- a/src/lib/block/aria/aria.h +++ b/src/lib/block/aria/aria.h @@ -23,7 +23,7 @@ namespace Botan { /** * ARIA-128 */ -class BOTAN_DLL ARIA_128 final : public Block_Cipher_Fixed_Params<16, 16> +class BOTAN_PUBLIC_API(2,3) ARIA_128 final : public Block_Cipher_Fixed_Params<16, 16> { public: void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override; @@ -42,7 +42,7 @@ class BOTAN_DLL ARIA_128 final : public Block_Cipher_Fixed_Params<16, 16> /** * ARIA-192 */ -class BOTAN_DLL ARIA_192 final : public Block_Cipher_Fixed_Params<16, 24> +class BOTAN_PUBLIC_API(2,3) ARIA_192 final : public Block_Cipher_Fixed_Params<16, 24> { public: void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override; @@ -61,7 +61,7 @@ class BOTAN_DLL ARIA_192 final : public Block_Cipher_Fixed_Params<16, 24> /** * ARIA-256 */ -class BOTAN_DLL ARIA_256 final : public Block_Cipher_Fixed_Params<16, 32> +class BOTAN_PUBLIC_API(2,3) ARIA_256 final : public Block_Cipher_Fixed_Params<16, 32> { public: void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override; diff --git a/src/lib/block/shacal2/shacal2.h b/src/lib/block/shacal2/shacal2.h index d63c1453d..6d1613558 100644 --- a/src/lib/block/shacal2/shacal2.h +++ b/src/lib/block/shacal2/shacal2.h @@ -15,7 +15,7 @@ namespace Botan { /** * SHACAL2 */ -class BOTAN_DLL SHACAL2 final : public Block_Cipher_Fixed_Params<32, 16, 64, 4> +class BOTAN_PUBLIC_API(2,3) SHACAL2 final : public Block_Cipher_Fixed_Params<32, 16, 64, 4> { public: void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override; diff --git a/src/lib/block/sm4/sm4.h b/src/lib/block/sm4/sm4.h index 873a44c60..f740ba6f5 100644 --- a/src/lib/block/sm4/sm4.h +++ b/src/lib/block/sm4/sm4.h @@ -15,7 +15,7 @@ namespace Botan { /** * SM4 */ -class BOTAN_DLL SM4 final : public Block_Cipher_Fixed_Params<16, 16> +class BOTAN_PUBLIC_API(2,2) SM4 final : public Block_Cipher_Fixed_Params<16, 16> { public: void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override; |