diff options
author | lloyd <[email protected]> | 2008-11-08 22:45:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-08 22:45:28 +0000 |
commit | dbccddadefdcd9d1f7bd8612d6af4449f4910b1c (patch) | |
tree | 0e3a47f70280df03d7bd3b58eaecea6c07c31155 /src/modes/cbc/cbc.h | |
parent | cccd3fafcffa318fa783f857f84b5545028daca2 (diff) |
Remove lookup.h use from ECB, CBC, CFB
Diffstat (limited to 'src/modes/cbc/cbc.h')
-rw-r--r-- | src/modes/cbc/cbc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modes/cbc/cbc.h b/src/modes/cbc/cbc.h index a0a30f90f..3069d6cb5 100644 --- a/src/modes/cbc/cbc.h +++ b/src/modes/cbc/cbc.h @@ -17,8 +17,8 @@ namespace Botan { class BOTAN_DLL CBC_Encryption : public BlockCipherMode { public: - CBC_Encryption(const std::string&, const std::string&); - CBC_Encryption(const std::string&, const std::string&, + CBC_Encryption(BlockCipher*, const BlockCipherModePaddingMethod*); + CBC_Encryption(BlockCipher*, const BlockCipherModePaddingMethod*, const SymmetricKey&, const InitializationVector&); private: std::string name() const; @@ -33,8 +33,8 @@ class BOTAN_DLL CBC_Encryption : public BlockCipherMode class BOTAN_DLL CBC_Decryption : public BlockCipherMode { public: - CBC_Decryption(const std::string&, const std::string&); - CBC_Decryption(const std::string&, const std::string&, + CBC_Decryption(BlockCipher*, const BlockCipherModePaddingMethod*); + CBC_Decryption(BlockCipher*, const BlockCipherModePaddingMethod*, const SymmetricKey&, const InitializationVector&); private: std::string name() const; |