diff --git a/Chaos/Cipher/Block/Des/DesCrypt.hpp b/Chaos/Cipher/Block/Des/DesCrypt.hpp index f303c50..66cdb21 100644 --- a/Chaos/Cipher/Block/Des/DesCrypt.hpp +++ b/Chaos/Cipher/Block/Des/DesCrypt.hpp @@ -236,6 +236,7 @@ public: class Encryptor : public Chaos::Cipher::Block::Encryptor { public: + using Block = DesCrypt::Block; using Key = DesCrypt::Key; static constexpr size_t BlockSize = DesCrypt::BlockSize; static constexpr size_t KeySize = DesCrypt::KeySize; @@ -281,6 +282,7 @@ public: class Decryptor : public Chaos::Cipher::Block::Decryptor { public: + using Block = DesCrypt::Block; using Key = DesCrypt::Key; static constexpr size_t BlockSize = DesCrypt::BlockSize; static constexpr size_t KeySize = DesCrypt::KeySize;