diff options
author | Jack Lloyd <[email protected]> | 2017-09-19 22:16:20 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-19 22:30:44 -0400 |
commit | da5466639c474bea919aee1aefda76ed4625fe85 (patch) | |
tree | 90ca44fa2b8ed8e828d316886452e8c80d6f08ad /src/lib/modes/cipher_mode.h | |
parent | 2f4b1610dc0b273c66c494e7bbef0116d9fd6511 (diff) |
Complete the final annotation changes
Diffstat (limited to 'src/lib/modes/cipher_mode.h')
-rw-r--r-- | src/lib/modes/cipher_mode.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/modes/cipher_mode.h b/src/lib/modes/cipher_mode.h index bf1821256..80b77d5f8 100644 --- a/src/lib/modes/cipher_mode.h +++ b/src/lib/modes/cipher_mode.h @@ -20,7 +20,7 @@ namespace Botan { /** * Interface for cipher modes */ -class BOTAN_DLL Cipher_Mode +class BOTAN_PUBLIC_API(2,0) Cipher_Mode { public: virtual ~Cipher_Mode() = default; @@ -223,9 +223,10 @@ enum Cipher_Dir : int { ENCRYPTION, DECRYPTION }; * @param direction ENCRYPTION or DECRYPTION * @param provider provider implementation to choose */ -BOTAN_DLL Cipher_Mode* get_cipher_mode(const std::string& algo_spec, - Cipher_Dir direction, - const std::string& provider = ""); +BOTAN_PUBLIC_API(2,2) +Cipher_Mode* get_cipher_mode(const std::string& algo_spec, + Cipher_Dir direction, + const std::string& provider = ""); } |