Fabcoin Core
0.16.2
P2P Digital Currency
|
Classes for implementing stream ciphers. More...
#include "config.h"
#include "cryptlib.h"
#include "seckey.h"
#include "secblock.h"
#include "argnames.h"
Go to the source code of this file.
Classes | |
class | AbstractPolicyHolder< POLICY_INTERFACE, BASE > |
Access a stream cipher policy object. More... | |
class | ConcretePolicyHolder< POLICY, BASE, POLICY_INTERFACE > |
Stream cipher policy object. More... | |
class | AdditiveCipherAbstractPolicy |
Policy object for additive stream ciphers. More... | |
class | AdditiveCipherConcretePolicy< WT, W, X, BASE > |
Base class for additive stream ciphers. More... | |
class | AdditiveCipherTemplate< BASE > |
Base class for additive stream ciphers with SymmetricCipher interface. More... | |
class | CFB_CipherAbstractPolicy |
Policy object for feeback based stream ciphers. More... | |
class | CFB_CipherConcretePolicy< WT, W, BASE > |
Base class for feedback based stream ciphers. More... | |
struct | CFB_CipherConcretePolicy< WT, W, BASE >::RegisterOutput< B > |
class | CFB_CipherTemplate< BASE > |
Base class for feedback based stream ciphers with SymmetricCipher interface. More... | |
class | CFB_EncryptionTemplate< BASE > |
Base class for feedback based stream ciphers in the forward direction with SymmetricCipher interface. More... | |
class | CFB_DecryptionTemplate< BASE > |
Base class for feedback based stream ciphers in the reverse direction with SymmetricCipher interface. More... | |
class | CFB_RequireFullDataBlocks< BASE > |
Base class for feedback based stream ciphers with a mandatory block size. More... | |
class | SymmetricCipherFinal< BASE, INFO > |
SymmetricCipher implementation. More... | |
Macros | |
#define | CRYPTOPP_KEYSTREAM_OUTPUT_WORD(x, b, i, a) PutWord(bool(x & OUTPUT_ALIGNED), b, output+i*sizeof(WordType), (x & INPUT_NULL) ? (a) : (a) ^ GetWord<WordType>(bool(x & INPUT_ALIGNED), b, input+i*sizeof(WordType))); |
Helper macro to implement OperateKeystream. More... | |
#define | CRYPTOPP_KEYSTREAM_OUTPUT_XMM(x, i, a) |
Helper macro to implement OperateKeystream. More... | |
#define | CRYPTOPP_KEYSTREAM_OUTPUT_SWITCH(x, y) |
Helper macro to implement OperateKeystream. More... | |
Enumerations | |
enum | KeystreamOperationFlags { OUTPUT_ALIGNED =1, INPUT_ALIGNED =2, INPUT_NULL = 4 } |
Keystream operation flags. More... | |
enum | KeystreamOperation { WRITE_KEYSTREAM = INPUT_NULL, WRITE_KEYSTREAM_ALIGNED = INPUT_NULL | OUTPUT_ALIGNED, XOR_KEYSTREAM = 0, XOR_KEYSTREAM_INPUT_ALIGNED = INPUT_ALIGNED, XOR_KEYSTREAM_OUTPUT_ALIGNED = OUTPUT_ALIGNED, XOR_KEYSTREAM_BOTH_ALIGNED = OUTPUT_ALIGNED | INPUT_ALIGNED } |
Keystream operation flags. More... | |
Classes for implementing stream ciphers.
This file contains helper classes for implementing stream ciphers. All this infrastructure may look very complex compared to what's in Crypto++ 4.x, but stream ciphers implementations now support a lot of new functionality, including better performance (minimizing copying), resetting of keys and IVs, and methods to query which features are supported by a cipher.
Here's an explanation of these classes. The word "policy" is used here to mean a class with a set of methods that must be implemented by individual stream cipher implementations. This is usually much simpler than the full stream cipher API, which is implemented by either AdditiveCipherTemplate or CFB_CipherTemplate using the policy. So for example, an implementation of SEAL only needs to implement the AdditiveCipherAbstractPolicy interface (since it's an additive cipher, i.e., it xors a keystream into the plaintext). See this line in seal.h:
typedef SymmetricCipherFinal<ConcretePolicyHolder<SEAL_Policy<B>, AdditiveCipherTemplate<> > > Encryption;
AdditiveCipherTemplate and CFB_CipherTemplate are designed so that they don't need to take a policy class as a template parameter (although this is allowed), so that their code is not duplicated for each new cipher. Instead they each get a reference to an abstract policy interface by calling AccessPolicy() on itself, so AccessPolicy() must be overridden to return the actual policy reference. This is done by the ConceretePolicyHolder class. Finally, SymmetricCipherFinal implements the constructors and other functions that must be implemented by the most derived class.
Definition in file strciphr.h.
#define CRYPTOPP_KEYSTREAM_OUTPUT_SWITCH | ( | x, | |
y | |||
) |
Helper macro to implement OperateKeystream.
Definition at line 235 of file strciphr.h.
#define CRYPTOPP_KEYSTREAM_OUTPUT_WORD | ( | x, | |
b, | |||
i, | |||
a | |||
) | PutWord(bool(x & OUTPUT_ALIGNED), b, output+i*sizeof(WordType), (x & INPUT_NULL) ? (a) : (a) ^ GetWord<WordType>(bool(x & INPUT_ALIGNED), b, input+i*sizeof(WordType))); |
Helper macro to implement OperateKeystream.
Definition at line 225 of file strciphr.h.
Helper macro to implement OperateKeystream.
Definition at line 229 of file strciphr.h.
enum KeystreamOperation |
Keystream operation flags.
Definition at line 90 of file strciphr.h.
Keystream operation flags.
Enumerator | |
---|---|
OUTPUT_ALIGNED |
Output buffer is aligned. |
INPUT_ALIGNED |
Input buffer is aligned. |
INPUT_NULL |
Input buffer is NULL. |
Definition at line 78 of file strciphr.h.
NAMESPACE_END CRYPTOPP_DLL_TEMPLATE_CLASS AbstractPolicyHolder< AdditiveCipherAbstractPolicy, SymmetricCipher > |
Definition at line 623 of file strciphr.h.
CRYPTOPP_DLL_TEMPLATE_CLASS AdditiveCipherTemplate< AbstractPolicyHolder< AdditiveCipherAbstractPolicy, SymmetricCipher > > |
Definition at line 624 of file strciphr.h.
CRYPTOPP_DLL_TEMPLATE_CLASS CFB_CipherTemplate< AbstractPolicyHolder< CFB_CipherAbstractPolicy, SymmetricCipher > > |
Definition at line 625 of file strciphr.h.
CRYPTOPP_DLL_TEMPLATE_CLASS CFB_DecryptionTemplate< AbstractPolicyHolder< CFB_CipherAbstractPolicy, SymmetricCipher > > |
Definition at line 627 of file strciphr.h.
CRYPTOPP_DLL_TEMPLATE_CLASS CFB_EncryptionTemplate< AbstractPolicyHolder< CFB_CipherAbstractPolicy, SymmetricCipher > > |
Definition at line 626 of file strciphr.h.