Fabcoin Core
0.16.2
P2P Digital Currency
|
SymmetricCipher implementation. More...
#include <strciphr.h>
Public Member Functions | |
virtual | ~SymmetricCipherFinal () |
SymmetricCipherFinal () | |
Construct a stream cipher. More... | |
SymmetricCipherFinal (const byte *key) | |
Construct a stream cipher. More... | |
SymmetricCipherFinal (const byte *key, size_t length) | |
Construct a stream cipher. More... | |
SymmetricCipherFinal (const byte *key, size_t length, const byte *iv) | |
Construct a stream cipher. More... | |
Clonable * | Clone () const |
Clone a SymmetricCipher. More... | |
Public Member Functions inherited from AlgorithmImpl< SimpleKeyingInterfaceImpl< BASE, INFO >, INFO > | |
std::string | AlgorithmName () const |
Public Member Functions inherited from SimpleKeyingInterfaceImpl< BASE, INFO > | |
size_t | MinKeyLength () const |
The minimum key length used by the algorithm. More... | |
size_t | MaxKeyLength () const |
The maximum key length used by the algorithm. More... | |
size_t | DefaultKeyLength () const |
The default key length used by the algorithm. More... | |
size_t | GetValidKeyLength (size_t keylength) const |
Provides a valid key length for the algorithm. More... | |
SimpleKeyingInterface::IV_Requirement | IVRequirement () const |
The default IV requirements for the algorithm. More... | |
unsigned int | IVSize () const |
The default initialization vector length for the algorithm. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from AlgorithmImpl< SimpleKeyingInterfaceImpl< BASE, INFO >, INFO > | |
static std::string CRYPTOPP_API | StaticAlgorithmName () |
SymmetricCipher implementation.
BASE | AbstractPolicyHolder derived base class |
INFO | AbstractPolicyHolder derived information class |
Definition at line 584 of file strciphr.h.
|
inlinevirtual |
Definition at line 587 of file strciphr.h.
|
inline |
Construct a stream cipher.
Definition at line 590 of file strciphr.h.
|
inline |
Construct a stream cipher.
key | a byte array used to key the cipher |
This overload uses DEFAULT_KEYLENGTH
Definition at line 595 of file strciphr.h.
|
inline |
Construct a stream cipher.
key | a byte array used to key the cipher |
length | the size of the key array |
Definition at line 601 of file strciphr.h.
|
inline |
Construct a stream cipher.
key | a byte array used to key the cipher |
length | the size of the key array |
iv | a byte array used as an initialization vector |
Definition at line 608 of file strciphr.h.
|
inline |
Clone a SymmetricCipher.
Definition at line 613 of file strciphr.h.