aboutsummaryrefslogtreecommitdiffstats
path: root/src/modes/eax/eax.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-08-11 17:12:00 +0000
committerlloyd <[email protected]>2009-08-11 17:12:00 +0000
commit13d50de7b7675d798437c0d465acedd23e08b092 (patch)
tree7fefcd94e67475c24f58f951e117746e1984589e /src/modes/eax/eax.h
parentf51841ba5237952dda3e76df643d3ae13bed3df5 (diff)
Modify Keyed_Filter so it is a pure interface
Modify ECB to use parallel encryption/decryption where possible Add toggles in build.h specifying how many blocks to process in parallel. Defaults to 8 blocks for all modes, which is sufficient that any likely parallelism can be extracted (via SIMD or concurrent execution) but not so much as to seem likely to cause cache problems (8*128 bits = 128 bytes, or two x86 cache lines)
Diffstat (limited to 'src/modes/eax/eax.h')
-rw-r--r--src/modes/eax/eax.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modes/eax/eax.h b/src/modes/eax/eax.h
index 1bb2e510d..f569f2ede 100644
--- a/src/modes/eax/eax.h
+++ b/src/modes/eax/eax.h
@@ -8,7 +8,7 @@
#ifndef BOTAN_EAX_H__
#define BOTAN_EAX_H__
-#include <botan/basefilt.h>
+#include <botan/key_filt.h>
#include <botan/block_cipher.h>
#include <botan/mac.h>