aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/threefish/threefish.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/block/threefish/threefish.h')
-rw-r--r--src/lib/block/threefish/threefish.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/block/threefish/threefish.h b/src/lib/block/threefish/threefish.h
index 8fe690f52..cdd27cb11 100644
--- a/src/lib/block/threefish/threefish.h
+++ b/src/lib/block/threefish/threefish.h
@@ -27,6 +27,8 @@ class BOTAN_DLL Threefish_512 final : public Block_Cipher_Fixed_Params<64, 64>
std::string provider() const override;
std::string name() const override { return "Threefish-512"; }
BlockCipher* clone() const override { return new Threefish_512; }
+ size_t parallelism() const override;
+
protected:
const secure_vector<uint64_t>& get_T() const { return m_T; }
const secure_vector<uint64_t>& get_K() const { return m_K; }