aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/base.cpp')
-rw-r--r--src/core/base.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/core/base.cpp b/src/core/base.cpp
index ff7fa5d4e..4fdf9562d 100644
--- a/src/core/base.cpp
+++ b/src/core/base.cpp
@@ -4,7 +4,6 @@
*************************************************/
#include <botan/base.h>
-#include <botan/mac.h>
#include <botan/version.h>
namespace Botan {
@@ -77,20 +76,6 @@ BufferedComputation::BufferedComputation(u32bit olen) : OUTPUT_LENGTH(olen)
}
/*************************************************
-* Default MAC verification operation *
-*************************************************/
-bool MessageAuthenticationCode::verify_mac(const byte mac[], u32bit length)
- {
- SecureVector<byte> our_mac = final();
- if(our_mac.size() != length)
- return false;
- for(u32bit j = 0; j != length; ++j)
- if(mac[j] != our_mac[j])
- return false;
- return true;
- }
-
-/*************************************************
* Default StreamCipher Resync Operation *
*************************************************/
void StreamCipher::resync(const byte[], u32bit length)