aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_mac.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/test_mac.cpp')
-rw-r--r--src/tests/test_mac.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tests/test_mac.cpp b/src/tests/test_mac.cpp
index 2e12ee6ed..fd1c920ec 100644
--- a/src/tests/test_mac.cpp
+++ b/src/tests/test_mac.cpp
@@ -8,7 +8,7 @@
#include "tests.h"
#if defined(BOTAN_HAS_MAC)
- #include <botan/mac.h>
+ #include <botan/mac.h>
#endif
namespace Botan_Tests {
@@ -44,7 +44,7 @@ class Message_Auth_Tests : public Text_Based_Test
return result;
}
- for(auto&& provider_ask : providers)
+ for(auto const& provider_ask : providers)
{
std::unique_ptr<Botan::MessageAuthenticationCode> mac(Botan::MessageAuthenticationCode::create(algo, provider_ask));
@@ -67,8 +67,8 @@ class Message_Auth_Tests : public Text_Based_Test
result.test_eq(provider, "correct mac", mac->final(), expected);
// Test to make sure clear() resets what we need it to
- mac->set_key( key );
- mac->update( "some discarded input");
+ mac->set_key(key);
+ mac->update("some discarded input");
mac->clear();
// do the same to test verify_mac()
@@ -92,7 +92,7 @@ class Message_Auth_Tests : public Text_Based_Test
mac->update(input[0]);
mac->update(&input[1], input.size() - 2);
- mac->update(input[input.size()-1]);
+ mac->update(input[input.size() - 1]);
result.test_eq(provider, "split mac", mac->final(), expected);