diff options
author | lloyd <[email protected]> | 2010-02-25 06:15:04 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-02-25 06:15:04 +0000 |
commit | be73bf2a3ff7ed61a7f58117cca00ab220ede52b (patch) | |
tree | fdd1e30a0c68da08bb567aa5933734c86ebb5f6c /src/block/aes_intel | |
parent | db1b57b499ad34a49adf4a2c53651d79c470b4f2 (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/aes_intel')
-rw-r--r-- | src/block/aes_intel/aes_intel.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/block/aes_intel/aes_intel.h b/src/block/aes_intel/aes_intel.h index 164655072..239516e24 100644 --- a/src/block/aes_intel/aes_intel.h +++ b/src/block/aes_intel/aes_intel.h @@ -18,6 +18,8 @@ namespace Botan { class BOTAN_DLL AES_128_Intel : public BlockCipher { public: + u32bit parallelism() const { return 8; } + void encrypt_n(const byte in[], byte out[], u32bit blocks) const; void decrypt_n(const byte in[], byte out[], u32bit blocks) const; @@ -38,6 +40,8 @@ class BOTAN_DLL AES_128_Intel : public BlockCipher class BOTAN_DLL AES_192_Intel : public BlockCipher { public: + u32bit parallelism() const { return 8; } + void encrypt_n(const byte in[], byte out[], u32bit blocks) const; void decrypt_n(const byte in[], byte out[], u32bit blocks) const; @@ -58,6 +62,8 @@ class BOTAN_DLL AES_192_Intel : public BlockCipher class BOTAN_DLL AES_256_Intel : public BlockCipher { public: + u32bit parallelism() const { return 8; } + void encrypt_n(const byte in[], byte out[], u32bit blocks) const; void decrypt_n(const byte in[], byte out[], u32bit blocks) const; |