From 12c4dfec24e999ab80ff3a45e0b837976d4c390c Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Tue, 27 Dec 2016 15:48:00 -0500 Subject: Add API stability annotations. Defined in build.h, all equal to BOTAN_DLL so ties into existing system for exporting symbols. --- src/lib/pubkey/pbes2/pbes2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/pubkey/pbes2') diff --git a/src/lib/pubkey/pbes2/pbes2.h b/src/lib/pubkey/pbes2/pbes2.h index 951ba3178..0eaa6e2cf 100644 --- a/src/lib/pubkey/pbes2/pbes2.h +++ b/src/lib/pubkey/pbes2/pbes2.h @@ -24,7 +24,7 @@ namespace Botan { * @param rng a random number generator */ std::pair> -BOTAN_DLL pbes2_encrypt(const secure_vector& key_bits, +BOTAN_PUBLIC_API(2,0) pbes2_encrypt(const secure_vector& key_bits, const std::string& passphrase, std::chrono::milliseconds msec, const std::string& cipher, @@ -75,7 +75,7 @@ BOTAN_DLL pbes2_encrypt_iter(const secure_vector& key_bits, * @param params the PBES2 parameters */ secure_vector -BOTAN_DLL pbes2_decrypt(const secure_vector& key_bits, +BOTAN_PUBLIC_API(2,0) pbes2_decrypt(const secure_vector& key_bits, const std::string& passphrase, const std::vector& params); -- cgit v1.2.3