aboutsummaryrefslogtreecommitdiffstats
path: root/src/mac/cbc_mac/cbc_mac.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-09 15:57:31 +0000
committerlloyd <[email protected]>2008-11-09 15:57:31 +0000
commita02b8a6dcebfa285e42a6a7010735dfdf7b47ac0 (patch)
tree57899ab98328aea62d6d665a38638e112697ff5a /src/mac/cbc_mac/cbc_mac.cpp
parentc604f94ec71cb520580c6fcf9257560bb7c053c5 (diff)
Rename SymmetricAlgorithm::key to key_schedule to avoid many name
conflicts/collisions
Diffstat (limited to 'src/mac/cbc_mac/cbc_mac.cpp')
-rw-r--r--src/mac/cbc_mac/cbc_mac.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mac/cbc_mac/cbc_mac.cpp b/src/mac/cbc_mac/cbc_mac.cpp
index de9a3c17d..cbbf77991 100644
--- a/src/mac/cbc_mac/cbc_mac.cpp
+++ b/src/mac/cbc_mac/cbc_mac.cpp
@@ -52,7 +52,7 @@ void CBC_MAC::final_result(byte mac[])
/*************************************************
* CBC-MAC Key Schedule *
*************************************************/
-void CBC_MAC::key(const byte key[], u32bit length)
+void CBC_MAC::key_schedule(const byte key[], u32bit length)
{
e->set_key(key, length);
}