summaryrefslogtreecommitdiff
path: root/ttmac.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2007-04-16 00:12:03 +0000
committerweidai <weidai11@users.noreply.github.com>2007-04-16 00:12:03 +0000
commit33e9f55cdb441fa9800019f66fa0a5a05077fad1 (patch)
tree7656fb9e4582f7386a7282efc13919a485fa20b2 /ttmac.h
parent004681fd5a08196d3d69a1b86b6705c255088598 (diff)
downloadcryptopp-git-33e9f55cdb441fa9800019f66fa0a5a05077fad1.tar.gz
optimizations
Diffstat (limited to 'ttmac.h')
-rw-r--r--ttmac.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ttmac.h b/ttmac.h
index 2e9b2629..b4bf86e2 100644
--- a/ttmac.h
+++ b/ttmac.h
@@ -15,8 +15,6 @@ public:
static std::string StaticAlgorithmName() {return std::string("Two-Track-MAC");}
CRYPTOPP_CONSTANT(DIGESTSIZE=20)
- TTMAC_Base() {SetStateSize(DIGESTSIZE*2);}
-
unsigned int DigestSize() const {return DIGESTSIZE;};
void UncheckedSetKey(const byte *userKey, unsigned int keylength, const NameValuePairs &params);
void TruncatedFinal(byte *mac, size_t size);
@@ -25,8 +23,10 @@ protected:
static void Transform (word32 *digest, const word32 *X, bool last);
void HashEndianCorrectedBlock(const word32 *data) {Transform(m_digest, data, false);}
void Init();
+ word32* StateBuf() {return m_digest;}
- FixedSizeSecBlock<word32, DIGESTSIZE> m_key;
+ FixedSizeSecBlock<word32, 10> m_digest;
+ FixedSizeSecBlock<word32, 5> m_key;
};
//! <a href="http://www.weidai.com/scan-mirror/mac.html#TTMAC">Two-Track-MAC</a>