blob: 96df2550391fad813d46bf3bddcdcf044dd1af4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/**
Message Authentication Code base class
(C) 1999-2008 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/mac.h>
namespace Botan {
/**
* Default (deterministic) 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;
}
}
|