Security Scol plugin
|
WAKE stream cipher operation. More...
#include <wake.h>
Protected Member Functions | |
void | CipherSetKey (const NameValuePairs ¶ms, const byte *key, size_t length) |
Key the cipher. | |
void | OperateKeystream (KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount) |
Operates the keystream. | |
bool | CipherIsRandomAccess () const |
Flag indicating random access. | |
Protected Member Functions inherited from WAKE_Base | |
word32 | M (word32 x, word32 y) |
void | GenKey (word32 k0, word32 k1, word32 k2, word32 k3) |
Additional Inherited Members | |
Public Types inherited from AdditiveCipherConcretePolicy< word32, 1, 64 > | |
typedef word32 | WordType |
Word type for the cipher. | |
Public Member Functions inherited from AdditiveCipherConcretePolicy< word32, 1, 64 > | |
CRYPTOPP_CONSTANT (BYTES_PER_ITERATION=sizeof(WordType) *W) | |
Number of bytes for an iteration. | |
unsigned int | GetAlignment () const |
Provides data alignment requirements. | |
unsigned int | GetBytesPerIteration () const |
Provides number of bytes operated upon during an iteration. | |
unsigned int | GetIterationsToBuffer () const |
Provides buffer size based on iterations. | |
bool | CanOperateKeystream () const |
Flag indicating. | |
Public Member Functions inherited from AdditiveCipherAbstractPolicy | |
virtual unsigned int | GetOptimalBlockSize () const |
Provides number of ideal bytes to process. | |
virtual void | WriteKeystream (byte *keystream, size_t iterationCount) |
Generate the keystream. | |
virtual void | CipherResynchronize (byte *keystreamBuffer, const byte *iv, size_t length) |
Resynchronize the cipher. | |
virtual void | SeekToIteration (lword iterationCount) |
Seeks to a random position in the stream. | |
virtual std::string | AlgorithmProvider () const |
Retrieve the provider of this algorithm. | |
Protected Attributes inherited from WAKE_Base | |
word32 | t [257] |
word32 | r3 |
word32 | r4 |
word32 | r5 |
word32 | r6 |
WAKE stream cipher operation.
B | Endianness of the stream cipher |
|
inlineprotectedvirtual |
Flag indicating random access.
Implements AdditiveCipherAbstractPolicy.
|
protectedvirtual |
Key the cipher.
params | set of NameValuePairs use to initialize this object |
key | a byte array used to key the cipher |
length | the size of the key array |
Implements AdditiveCipherAbstractPolicy.
|
protectedvirtual |
Operates the keystream.
operation | the operation with additional flags |
output | the output buffer |
input | the input buffer |
iterationCount | the number of iterations to perform on the input |
OperateKeystream() will attempt to operate upon GetOptimalBlockSize() buffer, which will be derived from GetBytesPerIteration().
Implements AdditiveCipherConcretePolicy< word32, 1, 64 >.