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/codec/base64 | |
parent | 2f4b1610dc0b273c66c494e7bbef0116d9fd6511 (diff) |
Complete the final annotation changes
Diffstat (limited to 'src/lib/codec/base64')
-rw-r--r-- | src/lib/codec/base64/base64.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/codec/base64/base64.h b/src/lib/codec/base64/base64.h index aefed4ba5..70e05828d 100644 --- a/src/lib/codec/base64/base64.h +++ b/src/lib/codec/base64/base64.h @@ -127,14 +127,14 @@ secure_vector<uint8_t> BOTAN_PUBLIC_API(2,0) base64_decode(const std::string& in * @param input_length the length of input in bytes * @return the size of output buffer in bytes */ -size_t BOTAN_DLL base64_encode_max_output(size_t input_length); +size_t BOTAN_PUBLIC_API(2,1) base64_encode_max_output(size_t input_length); /** * Calculate the size of output buffer for base64_decode * @param input_length the length of input in bytes * @return the size of output buffer in bytes */ -size_t BOTAN_DLL base64_decode_max_output(size_t input_length); +size_t BOTAN_PUBLIC_API(2,1) base64_decode_max_output(size_t input_length); } |