diff options
author | lloyd <[email protected]> | 2009-12-16 22:53:25 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-16 22:53:25 +0000 |
commit | f3f36611db8c3f6c67c818d454973a0165b0fcf2 (patch) | |
tree | 1fc131e32869e00eb7c87e70bee53fe26bc276b3 /src/constructs/aont | |
parent | e65ec3c8aae63d8c1942ce786d3b8c1f68a81e91 (diff) |
Add missing BOTAN_DLL exports.
Move most of the engine headers to internal
Diffstat (limited to 'src/constructs/aont')
-rw-r--r-- | src/constructs/aont/package.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/constructs/aont/package.h b/src/constructs/aont/package.h index 5024c0421..9c23d1836 100644 --- a/src/constructs/aont/package.h +++ b/src/constructs/aont/package.h @@ -25,10 +25,10 @@ namespace AllOrNothingTransform { * @arg output the output data buffer (must be at least * input_len + cipher->BLOCK_SIZE bytes long) */ -void package(RandomNumberGenerator& rng, - BlockCipher* cipher, - const byte input[], u32bit input_len, - byte output[]); +void BOTAN_DLL package(RandomNumberGenerator& rng, + BlockCipher* cipher, + const byte input[], u32bit input_len, + byte output[]); /** * Rivest's Package Tranform (Inversion) @@ -39,9 +39,9 @@ void package(RandomNumberGenerator& rng, * @arg output the output data buffer (must be at least * input_len - cipher->BLOCK_SIZE bytes long) */ -void unpackage(BlockCipher* cipher, - const byte input[], u32bit input_len, - byte output[]); +void BOTAN_DLL unpackage(BlockCipher* cipher, + const byte input[], u32bit input_len, + byte output[]); } |