DesEncryptor/DesDecryptor: expose key type.
All checks were successful
Chaos Ci / test-and-benchmark (push) Successful in 1m57s

This commit is contained in:
hashlag
2026-02-08 02:57:00 +03:00
parent 7c86d704b7
commit 0647a7c3dc

View File

@@ -233,6 +233,7 @@ public:
class DesEncryptor : public Encryptor<DesEncryptor>
{
public:
using Key = DesCrypt::Key;
static constexpr size_t BlockSize = DesCrypt::BlockSize;
static constexpr size_t KeySize = DesCrypt::KeySize;
@@ -277,6 +278,7 @@ public:
class DesDecryptor : public Decryptor<DesDecryptor>
{
public:
using Key = DesCrypt::Key;
static constexpr size_t BlockSize = DesCrypt::BlockSize;
static constexpr size_t KeySize = DesCrypt::KeySize;