Update comments

This commit is contained in:
Jeffrey Walton 2018-07-05 22:42:17 -04:00
parent d7a751b39a
commit 8c871b40ae
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -48,6 +48,7 @@ protected:
bool CanOperateKeystream() const { return true; }
bool CipherIsRandomAccess() const { return false; }
private:
// Master and working states
FixedSizeSecBlock<word32, 8> 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<word32, 8> m_mx, m_mc, m_wx, m_wc;
// Workspace