aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/idea_sse2
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-02-25 06:15:04 +0000
committerlloyd <[email protected]>2010-02-25 06:15:04 +0000
commitbe73bf2a3ff7ed61a7f58117cca00ab220ede52b (patch)
treefdd1e30a0c68da08bb567aa5933734c86ebb5f6c /src/block/idea_sse2
parentdb1b57b499ad34a49adf4a2c53651d79c470b4f2 (diff)
Set parallelism defaults.
Default unless specified is now 4. For SIMD code, use 2x the number of blocks which are processed in parallel using SIMD by that cipher. It may make sense to increase this to 4x or even more, further experimentation is necessary.
Diffstat (limited to 'src/block/idea_sse2')
-rw-r--r--src/block/idea_sse2/idea_sse2.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/block/idea_sse2/idea_sse2.h b/src/block/idea_sse2/idea_sse2.h
index 167c981f8..657581d74 100644
--- a/src/block/idea_sse2/idea_sse2.h
+++ b/src/block/idea_sse2/idea_sse2.h
@@ -18,6 +18,8 @@ namespace Botan {
class BOTAN_DLL IDEA_SSE2 : public IDEA
{
public:
+ u32bit parallelism() const { return 16; }
+
void encrypt_n(const byte in[], byte out[], u32bit blocks) const;
void decrypt_n(const byte in[], byte out[], u32bit blocks) const;