From 8c871b40ae1961117e083200dcce36cdf658b5b0 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 5 Jul 2018 22:42:17 -0400 Subject: [PATCH] Update comments --- TestVectors/hc128.txt | 5 +---- rabbit.h | 2 ++ 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/TestVectors/hc128.txt b/TestVectors/hc128.txt index ef2f8c13..95dffcdb 100644 --- a/TestVectors/hc128.txt +++ b/TestVectors/hc128.txt @@ -1,8 +1,5 @@ # These test vectors were generated using the eSTREAM reference -# implementation for HC-128 using the file hc-128.c. We could not -# use the published test vectors because they arrived at the -# incorrect result when plugged back into the reference -# implementation. Sigh... +# implementation for HC-128 using the file hc-128.c. AlgorithmType: SymmetricCipher Name: HC-128 diff --git a/rabbit.h b/rabbit.h index 42a55453..177c98cb 100644 --- a/rabbit.h +++ b/rabbit.h @@ -48,6 +48,7 @@ protected: bool CanOperateKeystream() const { return true; } bool CipherIsRandomAccess() const { return false; } +private: // Master and working states FixedSizeSecBlock m_mx, m_mc, m_wx, m_wc; // Workspace @@ -66,6 +67,7 @@ protected: bool CanOperateKeystream() const { return true; } bool CipherIsRandomAccess() const { return false; } +private: // Master and working states FixedSizeSecBlock m_mx, m_mc, m_wx, m_wc; // Workspace