aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/noekeon/noekeon.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-08-14 05:33:44 -0400
committerJack Lloyd <[email protected]>2017-08-14 05:33:44 -0400
commit7e2c92527209d47098c0b7b9712fafcd2455590e (patch)
treeea8f7f18a70fa63fc54d7664509002ab68c38d0b /src/lib/block/noekeon/noekeon.h
parent38775f8927747c414046632dd03a436b192c95a1 (diff)
Notify callers of parallel ops for AES, IDEA, Noekeon, SHACAL2 and Threefish
Diffstat (limited to 'src/lib/block/noekeon/noekeon.h')
-rw-r--r--src/lib/block/noekeon/noekeon.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/block/noekeon/noekeon.h b/src/lib/block/noekeon/noekeon.h
index 83af6d8d7..de49d658f 100644
--- a/src/lib/block/noekeon/noekeon.h
+++ b/src/lib/block/noekeon/noekeon.h
@@ -25,6 +25,8 @@ class BOTAN_DLL Noekeon final : public Block_Cipher_Fixed_Params<16, 16>
void clear() override;
std::string name() const override { return "Noekeon"; }
BlockCipher* clone() const override { return new Noekeon; }
+ size_t parallelism() const override;
+
private:
#if defined(BOTAN_HAS_NOEKEON_SIMD)
void simd_encrypt_4(const uint8_t in[], uint8_t out[]) const;