diff options
author | lloyd <[email protected]> | 2013-08-19 14:31:17 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-08-19 14:31:17 +0000 |
commit | 394033c9fe998dc6a64162414bbc2b705f1ec901 (patch) | |
tree | 0c5f8331cde1296a2c266800cbc5c594d128098d /src/modes/xts/xts.h | |
parent | 178fe54130c3582e5a292bac063f53a77dc4c4df (diff) |
Add Cipher_Mode intermediate class. Add missing BOTAN_DLL exports
Diffstat (limited to 'src/modes/xts/xts.h')
-rw-r--r-- | src/modes/xts/xts.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modes/xts/xts.h b/src/modes/xts/xts.h index 0aea3293d..a1f0f1626 100644 --- a/src/modes/xts/xts.h +++ b/src/modes/xts/xts.h @@ -8,7 +8,7 @@ #ifndef BOTAN_MODE_XTS_H__ #define BOTAN_MODE_XTS_H__ -#include <botan/transform.h> +#include <botan/cipher_mode.h> #include <botan/block_cipher.h> #include <memory> @@ -17,7 +17,7 @@ namespace Botan { /** * IEEE P1619 XTS Mode */ -class XTS_Mode : public Transformation +class BOTAN_DLL XTS_Mode : public Cipher_Mode { public: std::string name() const override; |