Fabcoin Core  0.16.2
P2P Digital Currency
authenc.h
Go to the documentation of this file.
1 // authenc.h - written and placed in the public domain by Wei Dai
2 
7 
8 #ifndef CRYPTOPP_AUTHENC_H
9 #define CRYPTOPP_AUTHENC_H
10 
11 #include "cryptlib.h"
12 #include "secblock.h"
13 
15 
20 {
21 public:
22  AuthenticatedSymmetricCipherBase() : m_state(State_Start), m_bufferedDataLength(0),
23  m_totalHeaderLength(0), m_totalMessageLength(0), m_totalFooterLength(0) {}
24 
25  bool IsRandomAccess() const {return false;}
26  bool IsSelfInverting() const {return true;}
27 
33  void UncheckedSetKey(const byte * key, unsigned int length,const CryptoPP::NameValuePairs &params)
34  {CRYPTOPP_UNUSED(key), CRYPTOPP_UNUSED(length), CRYPTOPP_UNUSED(params); CRYPTOPP_ASSERT(false);}
35 
36  void SetKey(const byte *userKey, size_t keylength, const NameValuePairs &params);
37  void Restart() {if (m_state > State_KeySet) m_state = State_KeySet;}
38  void Resynchronize(const byte *iv, int length=-1);
39  void Update(const byte *input, size_t length);
40  void ProcessData(byte *outString, const byte *inString, size_t length);
41  void TruncatedFinal(byte *mac, size_t macSize);
42 
43 protected:
44  void AuthenticateData(const byte *data, size_t len);
45  const SymmetricCipher & GetSymmetricCipher() const {return const_cast<AuthenticatedSymmetricCipherBase *>(this)->AccessSymmetricCipher();};
46 
47  virtual SymmetricCipher & AccessSymmetricCipher() =0;
48  virtual bool AuthenticationIsOnPlaintext() const =0;
49  virtual unsigned int AuthenticationBlockSize() const =0;
50  virtual void SetKeyWithoutResync(const byte *userKey, size_t keylength, const NameValuePairs &params) =0;
51  virtual void Resync(const byte *iv, size_t len) =0;
52  virtual size_t AuthenticateBlocks(const byte *data, size_t len) =0;
53  virtual void AuthenticateLastHeaderBlock() =0;
55  virtual void AuthenticateLastFooterBlock(byte *mac, size_t macSize) =0;
56 
57  enum State {State_Start, State_KeySet, State_IVSet, State_AuthUntransformed, State_AuthTransformed, State_AuthFooter};
59  unsigned int m_bufferedDataLength;
60  lword m_totalHeaderLength, m_totalMessageLength, m_totalFooterLength;
62 };
63 
65 
66 #endif
void UncheckedSetKey(const byte *key, unsigned int length, const CryptoPP::NameValuePairs &params)
Sets the key for this object without performing parameter validation.
Definition: authenc.h:33
uint8_t byte
Definition: Common.h:57
Interface for one direction (encryption or decryption) of a stream cipher or block cipher mode with a...
Definition: cryptlib.h:1121
#define NAMESPACE_BEGIN(x)
Definition: config.h:200
const SymmetricCipher & GetSymmetricCipher() const
Definition: authenc.h:45
Abstract base classes that provide a uniform interface to this library.
AlignedSecByteBlock m_buffer
Definition: authenc.h:61
bool IsRandomAccess() const
Determines whether the cipher supports random access.
Definition: authenc.h:25
void Restart()
Restart the hash.
Definition: authenc.h:37
Classes and functions for secure memory allocations.
unsigned int m_bufferedDataLength
Definition: authenc.h:59
Interface for one direction (encryption or decryption) of a stream cipher or cipher mode...
Definition: cryptlib.h:1103
Base implementation for one direction (encryption or decryption) of a stream cipher or block cipher m...
Definition: authenc.h:19
#define CRYPTOPP_ASSERT(exp)
Definition: trap.h:92
#define CRYPTOPP_NO_VTABLE
Definition: config.h:369
bool IsSelfInverting() const
Determines whether the cipher is self-inverting.
Definition: authenc.h:26
virtual void AuthenticateLastConfidentialBlock()
Definition: authenc.h:54
#define CRYPTOPP_UNUSED(x)
Definition: config.h:741
#define NAMESPACE_END
Definition: config.h:201
word64 lword
Definition: config.h:245
#define CRYPTOPP_DLL
Definition: config.h:704
uint8_t const * data
Definition: sha3.h:19
Interface for retrieving values given their names.
Definition: cryptlib.h:279