Fabcoin Core
0.16.2
P2P Digital Currency
|
Provides class member functions to key a message authentication code. More...
#include <seckey.h>
Public Member Functions | |
MessageAuthenticationCodeFinal () | |
Construct a default MessageAuthenticationCodeFinal. More... | |
MessageAuthenticationCodeFinal (const byte *key) | |
Construct a BlockCipherFinal. More... | |
MessageAuthenticationCodeFinal (const byte *key, size_t length) | |
Construct a BlockCipherFinal. More... | |
Public Member Functions inherited from ClonableImpl< MessageAuthenticationCodeFinal< BASE >, MessageAuthenticationCodeImpl< BASE > > | |
Clonable * | Clone () const |
Public Member Functions inherited from AlgorithmImpl< SimpleKeyingInterfaceImpl< BASE, BASE >, BASE > | |
std::string | AlgorithmName () const |
Public Member Functions inherited from SimpleKeyingInterfaceImpl< BASE, BASE > | |
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, BASE >, BASE > | |
static std::string CRYPTOPP_API | StaticAlgorithmName () |
Provides class member functions to key a message authentication code.
DIR | a CipherDir |
BASE | a BlockCipherImpl derived class |
|
inline |
Construct a default MessageAuthenticationCodeFinal.
The message authentication code is not keyed.
|
inline |
Construct a BlockCipherFinal.
key | a byte array used to key the algorithm |
key must be at least DEFAULT_KEYLENGTH in length. Internally, the function calls SimpleKeyingInterface::SetKey.
|
inline |
Construct a BlockCipherFinal.
key | a byte array used to key the algorithm |
length | the length of the byte array |
key must be at least DEFAULT_KEYLENGTH in length. Internally, the function calls SimpleKeyingInterface::SetKey.