Security Scol plugin
hc256.h
Go to the documentation of this file.
1// hc256.h - written and placed in the public domain by Jeffrey Walton
2// based on public domain code by Hongjun Wu.
3//
4// The reference materials and source files are available at
5// The eSTREAM Project, http://www.ecrypt.eu.org/stream/hc256.html.
6
13
14#ifndef CRYPTOPP_HC256_H
15#define CRYPTOPP_HC256_H
16
17#include "strciphr.h"
18#include "secblock.h"
19
20NAMESPACE_BEGIN(CryptoPP)
21
22
24struct HC256Info : public FixedKeyLength<32, SimpleKeyingInterface::UNIQUE_IV, 32>
25{
26 CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() { return "HC-256"; }
27};
28
31class HC256Policy : public AdditiveCipherConcretePolicy<word32, 4>, public HC256Info
32{
33protected:
34 void CipherSetKey(const NameValuePairs &params, const byte *key, size_t length);
35 void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount);
36 void CipherResynchronize(byte *keystreamBuffer, const byte *iv, size_t length);
37 bool CanOperateKeystream() const { return true; }
38 bool CipherIsRandomAccess() const { return false; }
39
40 word32 H1(word32 u);
41 word32 H2(word32 u);
42 word32 Generate();
43
44private:
47 word32 m_P[1024];
48 word32 m_Q[1024];
49 word32 m_ctr;
50};
51
64
65NAMESPACE_END
66
67#endif // CRYPTOPP_HC256_H
Inherited by keyed algorithms with fixed key length.
Definition seckey.h:125
Fixed size stack-based SecBlock.
Definition secblock.h:1246
HC-256 stream cipher implementation.
Definition hc256.h:32
void CipherResynchronize(byte *keystreamBuffer, const byte *iv, size_t length)
Resynchronize the cipher.
Definition hc256.cpp:120
void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount)
Operates the keystream.
Definition hc256.cpp:95
void CipherSetKey(const NameValuePairs &params, const byte *key, size_t length)
Key the cipher.
Definition hc256.cpp:80
bool CanOperateKeystream() const
Flag indicating.
Definition hc256.h:37
bool CipherIsRandomAccess() const
Flag indicating random access.
Definition hc256.h:38
Interface for retrieving values given their names.
Definition cryptlib.h:322
Interface for algorithms that take byte strings as keys.
Definition cryptlib.h:642
SymmetricCipher implementation.
Definition strciphr.h:684
unsigned int word32
32-bit unsigned datatype
Definition config_int.h:62
Classes and functions for secure memory allocations.
Classes for implementing stream ciphers.
KeystreamOperation
Keystream operation flags.
Definition strciphr.h:88
Base class for additive stream ciphers.
Definition strciphr.h:202
HC-256 stream cipher.
Definition hc256.h:60
HC-256 stream cipher information.
Definition hc256.h:25
Provides Encryption and Decryption typedefs used by derived classes to implement a symmetric cipher.
Definition seckey.h:414