diff options
author | lloyd <[email protected]> | 2013-03-20 02:32:07 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-03-20 02:32:07 +0000 |
commit | 89f9ff94bf8f8d3f0acd5c0e28a5bb40e6e57cf8 (patch) | |
tree | b1f7f36d14dd723196451f89fb9f2807835273f8 | |
parent | ee72281de9d09e71ced94580d1cf095848d14873 (diff) |
Rename AEAD_Mode to AEAD_Filter
-rw-r--r-- | src/filters/aead/aead_filt.h (renamed from src/filters/aead/aead.h) | 2 | ||||
-rw-r--r-- | src/filters/aead/eax/eax.h | 4 | ||||
-rw-r--r-- | src/filters/aead/gcm/gcm.h | 4 | ||||
-rw-r--r-- | src/filters/aead/ocb/ocb.h | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/src/filters/aead/aead.h b/src/filters/aead/aead_filt.h index aa080452b..77818c17e 100644 --- a/src/filters/aead/aead.h +++ b/src/filters/aead/aead_filt.h @@ -12,7 +12,7 @@ namespace Botan { -class BOTAN_DLL AEAD_Mode : public Keyed_Filter +class BOTAN_DLL AEAD_Filter : public Keyed_Filter { public: /** diff --git a/src/filters/aead/eax/eax.h b/src/filters/aead/eax/eax.h index a85377524..cf99622a1 100644 --- a/src/filters/aead/eax/eax.h +++ b/src/filters/aead/eax/eax.h @@ -8,7 +8,7 @@ #ifndef BOTAN_EAX_H__ #define BOTAN_EAX_H__ -#include <botan/aead.h> +#include <botan/aead_filt.h> #include <botan/buf_filt.h> #include <botan/block_cipher.h> #include <botan/stream_cipher.h> @@ -20,7 +20,7 @@ namespace Botan { /** * EAX Mode */ -class BOTAN_DLL EAX_Mode : public AEAD_Mode, +class BOTAN_DLL EAX_Mode : public AEAD_Filter, private Buffered_Filter { public: diff --git a/src/filters/aead/gcm/gcm.h b/src/filters/aead/gcm/gcm.h index 067b19298..a04a6b8c0 100644 --- a/src/filters/aead/gcm/gcm.h +++ b/src/filters/aead/gcm/gcm.h @@ -8,7 +8,7 @@ #ifndef BOTAN_GCM_H__ #define BOTAN_GCM_H__ -#include <botan/aead.h> +#include <botan/aead_filt.h> #include <botan/buf_filt.h> #include <botan/block_cipher.h> #include <botan/stream_cipher.h> @@ -19,7 +19,7 @@ namespace Botan { /** * GCM Mode */ -class BOTAN_DLL GCM_Mode : public AEAD_Mode, +class BOTAN_DLL GCM_Mode : public AEAD_Filter, private Buffered_Filter { public: diff --git a/src/filters/aead/ocb/ocb.h b/src/filters/aead/ocb/ocb.h index f5209df12..0a1cbcaff 100644 --- a/src/filters/aead/ocb/ocb.h +++ b/src/filters/aead/ocb/ocb.h @@ -8,7 +8,7 @@ #ifndef BOTAN_OCB_H__ #define BOTAN_OCB_H__ -#include <botan/aead.h> +#include <botan/aead_filt.h> #include <botan/block_cipher.h> #include <botan/buf_filt.h> #include <memory> @@ -27,7 +27,7 @@ class Nonce_State; * @see Free Licenses http://www.cs.ucdavis.edu/~rogaway/ocb/license.htm * @see OCB home page http://www.cs.ucdavis.edu/~rogaway/ocb */ -class BOTAN_DLL OCB_Mode : public AEAD_Mode, +class BOTAN_DLL OCB_Mode : public AEAD_Filter, private Buffered_Filter { public: |