Crypto++  8.8
Free C++ class library of cryptographic schemes
modes.h
Go to the documentation of this file.
1 // modes.h - originally written and placed in the public domain by Wei Dai
2 
3 /// \file modes.h
4 /// \brief Classes for block cipher modes of operation
5 
6 #ifndef CRYPTOPP_MODES_H
7 #define CRYPTOPP_MODES_H
8 
9 #include "cryptlib.h"
10 #include "secblock.h"
11 #include "misc.h"
12 #include "strciphr.h"
13 #include "argnames.h"
14 #include "algparam.h"
15 
16 // Issue 340
17 #if CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE
18 # pragma GCC diagnostic push
19 # pragma GCC diagnostic ignored "-Wconversion"
20 # pragma GCC diagnostic ignored "-Wsign-conversion"
21 #endif
22 
23 #if CRYPTOPP_MSC_VERSION
24 # pragma warning(push)
25 # pragma warning(disable: 4231 4275)
26 # if (CRYPTOPP_MSC_VERSION >= 1400)
27 # pragma warning(disable: 6011 6386 28193)
28 # endif
29 #endif
30 
31 NAMESPACE_BEGIN(CryptoPP)
32 
33 /// \brief Block cipher mode of operation information
34 /// \details Each class derived from this one defines two types, Encryption and Decryption,
35 /// both of which implement the SymmetricCipher interface.
36 /// For each mode there are two classes, one of which is a template class,
37 /// and the other one has a name that ends in "_ExternalCipher".
38 /// The "external cipher" mode objects hold a reference to the underlying block cipher,
39 /// instead of holding an instance of it. The reference must be passed in to the constructor.
40 /// For the "cipher holder" classes, the CIPHER template parameter should be a class
41 /// derived from BlockCipherDocumentation, for example DES or AES.
42 /// \details See NIST SP 800-38A for definitions of these modes. See
43 /// AuthenticatedSymmetricCipherDocumentation for authenticated encryption modes.
45 {
46 };
47 
48 /// \brief Block cipher mode of operation information
49 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CipherModeBase : public SymmetricCipher
50 {
51 public:
52  virtual ~CipherModeBase() {}
53 
54  // Algorithm class
55  std::string AlgorithmProvider() const {
56  return m_cipher != NULLPTR ? m_cipher->AlgorithmProvider() : "C++";
57  }
58 
59  /// \brief Returns smallest valid key length
60  /// \return the minimum key length, in bytes
61  size_t MinKeyLength() const {return m_cipher->MinKeyLength();}
62 
63  /// \brief Returns largest valid key length
64  /// \return the maximum key length, in bytes
65  size_t MaxKeyLength() const {return m_cipher->MaxKeyLength();}
66 
67  /// \brief Returns default key length
68  /// \return the default key length, in bytes
69  size_t DefaultKeyLength() const {return m_cipher->DefaultKeyLength();}
70 
71  /// \brief Returns a valid key length for the algorithm
72  /// \param keylength the size of the key, in bytes
73  /// \return the valid key length, in bytes
74  /// \details keylength is provided in bytes, not bits. If keylength is less than MIN_KEYLENGTH,
75  /// then the function returns MIN_KEYLENGTH. If keylength is greater than MAX_KEYLENGTH,
76  /// then the function returns MAX_KEYLENGTH. if If keylength is a multiple of KEYLENGTH_MULTIPLE,
77  /// then keylength is returned. Otherwise, the function returns a \a lower multiple of
78  /// KEYLENGTH_MULTIPLE.
79  size_t GetValidKeyLength(size_t keylength) const {return m_cipher->GetValidKeyLength(keylength);}
80 
81  /// \brief Returns whether keylength is a valid key length
82  /// \param keylength the requested keylength
83  /// \return true if keylength is valid, false otherwise
84  /// \details Internally the function calls GetValidKeyLength()
85  bool IsValidKeyLength(size_t keylength) const {return m_cipher->IsValidKeyLength(keylength);}
86 
87  /// \brief Provides input and output data alignment for optimal performance.
88  /// \return the input data alignment that provides optimal performance
89  /// \sa GetAlignment() and OptimalBlockSize()
90  unsigned int OptimalDataAlignment() const {return m_cipher->OptimalDataAlignment();}
91 
92  /// \brief Returns length of the IV accepted by this object
93  /// \return the size of an IV, in bytes
94  /// \throw NotImplemented() if the object does not support resynchronization
95  /// \details The default implementation throws NotImplemented
96  unsigned int IVSize() const {return BlockSize();}
97 
98  /// \brief Minimal requirement for secure IVs
99  /// \return the secure IV requirement of the algorithm
100  virtual IV_Requirement IVRequirement() const =0;
101 
102  /// \brief Set external block cipher
103  /// \param cipher An external block cipher
104  /// \details The cipher should be keyed.
105  void SetCipher(BlockCipher &cipher)
106  {
107  this->ThrowIfResynchronizable();
108  this->m_cipher = &cipher;
109  this->ResizeBuffers();
110  }
111 
112  /// \brief Set external block cipher and IV
113  /// \param cipher An external block cipher
114  /// \param iv a byte array used to resynchronize the cipher
115  /// \param feedbackSize the feedback size, in bytes
116  /// \details The cipher should be keyed.
117  void SetCipherWithIV(BlockCipher &cipher, const byte *iv, int feedbackSize = 0)
118  {
119  this->ThrowIfInvalidIV(iv);
120  this->m_cipher = &cipher;
121  this->ResizeBuffers();
122  this->SetFeedbackSize(feedbackSize);
123  if (this->IsResynchronizable())
124  this->Resynchronize(iv);
125  }
126 
127 protected:
128  CipherModeBase() : m_cipher(NULLPTR) {}
129  inline unsigned int BlockSize() const
130  {
131  CRYPTOPP_ASSERT(m_register.size() > 0);
132  return static_cast<unsigned int>(m_register.size());
133  }
134  virtual void SetFeedbackSize(unsigned int feedbackSize)
135  {
136  if (!(feedbackSize == 0 || feedbackSize == BlockSize()))
137  throw InvalidArgument("CipherModeBase: feedback size cannot be specified for this cipher mode");
138  }
139 
140  virtual void ResizeBuffers();
141 
142  BlockCipher *m_cipher;
143  SecByteBlock m_register;
144 };
145 
146 /// \brief Block cipher mode of operation common operations
147 /// \tparam POLICY_INTERFACE common operations
148 template <class POLICY_INTERFACE>
149 class CRYPTOPP_NO_VTABLE ModePolicyCommonTemplate : public CipherModeBase, public POLICY_INTERFACE
150 {
151  unsigned int GetAlignment() const {return m_cipher->OptimalDataAlignment();}
152  void CipherSetKey(const NameValuePairs &params, const byte *key, size_t length);
153 };
154 
155 template <class POLICY_INTERFACE>
156 void ModePolicyCommonTemplate<POLICY_INTERFACE>::CipherSetKey(const NameValuePairs &params, const byte *key, size_t length)
157 {
158  m_cipher->SetKey(key, length, params);
159  ResizeBuffers();
160  int feedbackSize = params.GetIntValueWithDefault(Name::FeedbackSize(), 0);
161  SetFeedbackSize(feedbackSize);
162 }
163 
164 /// \brief CFB block cipher mode of operation
165 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CFB_ModePolicy : public ModePolicyCommonTemplate<CFB_CipherAbstractPolicy>
166 {
167 public:
168  CRYPTOPP_STATIC_CONSTEXPR const char* CRYPTOPP_API StaticAlgorithmName() {return "CFB";}
169 
170  virtual ~CFB_ModePolicy() {}
171  CFB_ModePolicy() : m_feedbackSize(0) {}
173 
174 protected:
175  unsigned int GetBytesPerIteration() const {return m_feedbackSize;}
176  bool CanIterate() const {return m_feedbackSize == BlockSize();}
177  void Iterate(byte *output, const byte *input, CipherDir dir, size_t iterationCount);
178  void TransformRegister();
179  void CipherResynchronize(const byte *iv, size_t length);
180  void SetFeedbackSize(unsigned int feedbackSize);
181  void ResizeBuffers();
182  byte * GetRegisterBegin();
183 
184  SecByteBlock m_temp;
185  unsigned int m_feedbackSize;
186 };
187 
188 /// \brief Initialize a block of memory
189 /// \param dest the destination block of memory
190 /// \param dsize the size of the destination block, in bytes
191 /// \param src the source block of memory
192 /// \param ssize the size of the source block, in bytes
193 /// \details CopyOrZero copies ssize bytes from source to destination if
194 /// src is not NULL. If src is NULL then dest is zero'd. Bounds are not
195 /// checked at runtime. Debug builds assert if ssize exceeds dsize.
196 inline void CopyOrZero(void *dest, size_t dsize, const void *src, size_t ssize)
197 {
198  CRYPTOPP_ASSERT(dest);
199  CRYPTOPP_ASSERT(dsize >= ssize);
200 
201  if (src != NULLPTR)
202  memcpy_s(dest, dsize, src, ssize);
203  else
204  std::memset(dest, 0, dsize);
205 }
206 
207 /// \brief OFB block cipher mode of operation
208 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE OFB_ModePolicy : public ModePolicyCommonTemplate<AdditiveCipherAbstractPolicy>
209 {
210 public:
211  CRYPTOPP_STATIC_CONSTEXPR const char* CRYPTOPP_API StaticAlgorithmName() {return "OFB";}
212 
213  bool CipherIsRandomAccess() const {return false;}
215 
216 protected:
217  unsigned int GetBytesPerIteration() const {return BlockSize();}
218  unsigned int GetIterationsToBuffer() const {return m_cipher->OptimalNumberOfParallelBlocks();}
219  void WriteKeystream(byte *keystreamBuffer, size_t iterationCount);
220  void CipherResynchronize(byte *keystreamBuffer, const byte *iv, size_t length);
221 };
222 
223 /// \brief CTR block cipher mode of operation
224 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CTR_ModePolicy : public ModePolicyCommonTemplate<AdditiveCipherAbstractPolicy>
225 {
226 public:
227  CRYPTOPP_STATIC_CONSTEXPR const char* CRYPTOPP_API StaticAlgorithmName() {return "CTR";}
228 
229  virtual ~CTR_ModePolicy() {}
230  bool CipherIsRandomAccess() const {return true;}
232 
233 protected:
234  virtual void IncrementCounterBy256();
235  unsigned int GetAlignment() const {return m_cipher->OptimalDataAlignment();}
236  unsigned int GetBytesPerIteration() const {return BlockSize();}
237  unsigned int GetIterationsToBuffer() const {return m_cipher->OptimalNumberOfParallelBlocks();}
238  void WriteKeystream(byte *buffer, size_t iterationCount)
239  {OperateKeystream(WRITE_KEYSTREAM, buffer, NULLPTR, iterationCount);}
240  bool CanOperateKeystream() const {return true;}
241  void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount);
242  void CipherResynchronize(byte *keystreamBuffer, const byte *iv, size_t length);
243  void SeekToIteration(lword iterationCount);
244 
245  // adv_simd.h increments the counter
246  mutable SecByteBlock m_counterArray;
247 };
248 
249 /// \brief Block cipher mode of operation default implementation
250 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE BlockOrientedCipherModeBase : public CipherModeBase
251 {
252 public:
253  virtual ~BlockOrientedCipherModeBase() {}
254  void UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params);
255  unsigned int MandatoryBlockSize() const {return BlockSize();}
256  bool IsRandomAccess() const {return false;}
257  bool IsSelfInverting() const {return false;}
259  {return m_cipher->IsForwardTransformation();}
260  void Resynchronize(const byte *iv, int length=-1)
261  {memcpy_s(m_register, m_register.size(), iv, ThrowIfInvalidIVLength(length));}
262 
263 protected:
264  bool RequireAlignedInput() const {return true;}
265  virtual void ResizeBuffers();
266 
267  SecByteBlock m_buffer;
268 };
269 
270 /// \brief ECB block cipher mode of operation default implementation
271 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE ECB_OneWay : public BlockOrientedCipherModeBase
272 {
273 public:
274  CRYPTOPP_STATIC_CONSTEXPR const char* CRYPTOPP_API StaticAlgorithmName() {return "ECB";}
275 
276  void SetKey(const byte *key, size_t length, const NameValuePairs &params = g_nullNameValuePairs)
277  {m_cipher->SetKey(key, length, params); BlockOrientedCipherModeBase::ResizeBuffers();}
279  unsigned int OptimalBlockSize() const {return static_cast<unsigned int>(BlockSize() * m_cipher->OptimalNumberOfParallelBlocks());}
280  void ProcessData(byte *outString, const byte *inString, size_t length);
281 };
282 
283 /// \brief CBC block cipher mode of operation default implementation
284 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CBC_ModeBase : public BlockOrientedCipherModeBase
285 {
286 public:
287  CRYPTOPP_STATIC_CONSTEXPR const char* CRYPTOPP_API StaticAlgorithmName() {return "CBC";}
288 
290  bool RequireAlignedInput() const {return false;}
291  unsigned int MinLastBlockSize() const {return 0;}
292 };
293 
294 /// \brief CBC block cipher mode of operation encryption operation
295 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CBC_Encryption : public CBC_ModeBase
296 {
297 public:
298  void ProcessData(byte *outString, const byte *inString, size_t length);
299 };
300 
301 /// \brief CBC-CTS block cipher mode of operation encryption operation
302 /// \since Crypto++ 3.0
303 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CBC_CTS_Encryption : public CBC_Encryption
304 {
305 public:
306  CRYPTOPP_STATIC_CONSTEXPR const char* CRYPTOPP_API StaticAlgorithmName() {return "CBC/CTS";}
307 
308  void SetStolenIV(byte *iv) {m_stolenIV = iv;}
309  unsigned int MinLastBlockSize() const {return BlockSize()+1;}
310  size_t ProcessLastBlock(byte *outString, size_t outLength, const byte *inString, size_t inLength);
311 
312 protected:
313  void UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params)
314  {
315  CBC_Encryption::UncheckedSetKey(key, length, params);
316  m_stolenIV = params.GetValueWithDefault(Name::StolenIV(), static_cast<byte *>(NULLPTR));
317  }
318 
319  byte *m_stolenIV;
320 };
321 
322 /// \brief CBC block cipher mode of operation decryption operation
323 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CBC_Decryption : public CBC_ModeBase
324 {
325 public:
326  virtual ~CBC_Decryption() {}
327  void ProcessData(byte *outString, const byte *inString, size_t length);
328 
329 protected:
330  virtual void ResizeBuffers();
331 
332  SecByteBlock m_temp;
333 };
334 
335 /// \brief CBC-CTS block cipher mode of operation decryption operation
336 /// \since Crypto++ 3.0
337 class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CBC_CTS_Decryption : public CBC_Decryption
338 {
339 public:
340  unsigned int MinLastBlockSize() const {return BlockSize()+1;}
341  size_t ProcessLastBlock(byte *outString, size_t outLength, const byte *inString, size_t inLength);
342 };
343 
344 /// \brief Block cipher mode of operation aggregate
345 template <class CIPHER, class BASE>
346 class CipherModeFinalTemplate_CipherHolder : protected ObjectHolder<CIPHER>, public AlgorithmImpl<BASE, CipherModeFinalTemplate_CipherHolder<CIPHER, BASE> >
347 {
348 public:
349  /// \brief Provides the name of this algorithm
350  /// \return the standard algorithm name
351  /// \details The standard algorithm name can be a name like \a AES or \a AES/GCM. Some algorithms
352  /// do not have standard names yet. For example, there is no standard algorithm name for
353  /// Shoup's ECIES.
354  static std::string CRYPTOPP_API StaticAlgorithmName()
355  {return CIPHER::StaticAlgorithmName() + "/" + BASE::StaticAlgorithmName();}
356 
357  /// \brief Construct a CipherModeFinalTemplate
359  {
360  this->m_cipher = &this->m_object;
361  this->ResizeBuffers();
362  }
363 
364  /// \brief Construct a CipherModeFinalTemplate
365  /// \param key a byte array used to key the cipher
366  /// \param length size of the key in bytes
367  /// \details key must be at least DEFAULT_KEYLENGTH in length. Internally, the function calls
368  /// SimpleKeyingInterface::SetKey.
369  CipherModeFinalTemplate_CipherHolder(const byte *key, size_t length)
370  {
371  this->m_cipher = &this->m_object;
372  this->SetKey(key, length);
373  }
374 
375  /// \brief Construct a CipherModeFinalTemplate
376  /// \param key a byte array used to key the cipher
377  /// \param length size of the key in bytes
378  /// \param iv a byte array used to resynchronize the cipher
379  /// \details key must be at least DEFAULT_KEYLENGTH in length. iv must be IVSize() or
380  /// BLOCKSIZE in length. Internally, the function calls SimpleKeyingInterface::SetKey.
381  CipherModeFinalTemplate_CipherHolder(const byte *key, size_t length, const byte *iv)
382  {
383  this->m_cipher = &this->m_object;
384  this->SetKey(key, length, MakeParameters(Name::IV(), ConstByteArrayParameter(iv, this->m_cipher->BlockSize())));
385  }
386 
387  /// \brief Construct a CipherModeFinalTemplate
388  /// \param key a byte array used to key the cipher
389  /// \param length size of the key in bytes
390  /// \param iv a byte array used to resynchronize the cipher
391  /// \param feedbackSize the feedback size, in bytes
392  /// \details key must be at least DEFAULT_KEYLENGTH in length. iv must be IVSize() or
393  /// BLOCKSIZE in length. Internally, the function calls SimpleKeyingInterface::SetKey.
394  CipherModeFinalTemplate_CipherHolder(const byte *key, size_t length, const byte *iv, int feedbackSize)
395  {
396  this->m_cipher = &this->m_object;
397  this->SetKey(key, length, MakeParameters(Name::IV(), ConstByteArrayParameter(iv, this->m_cipher->BlockSize()))(Name::FeedbackSize(), feedbackSize));
398  }
399 
400  // Algorithm class
401  std::string AlgorithmProvider() const {
402  return this->m_cipher->AlgorithmProvider();
403  }
404 };
405 
406 /// \tparam BASE CipherModeFinalTemplate_CipherHolder base class
407 /// \details Base class for external mode cipher combinations
408 template <class BASE>
410 {
411 public:
412  /// \brief Construct a default CipherModeFinalTemplate
413  /// \details The cipher is not keyed.
415 
416  /// \brief Construct a CipherModeFinalTemplate
417  /// \param cipher An external block cipher
418  /// \details The cipher should be keyed.
420  {this->SetCipher(cipher);}
421 
422  /// \brief Construct a CipherModeFinalTemplate
423  /// \param cipher An external block cipher
424  /// \param iv a byte array used to resynchronize the cipher
425  /// \param feedbackSize the feedback size, in bytes
426  /// \details The cipher should be keyed.
427  CipherModeFinalTemplate_ExternalCipher(BlockCipher &cipher, const byte *iv, int feedbackSize = 0)
428  {this->SetCipherWithIV(cipher, iv, feedbackSize);}
429 
430  /// \brief Provides the name of this algorithm
431  /// \return the standard algorithm name
432  /// \details The standard algorithm name can be a name like \a AES or \a AES/GCM. Some algorithms
433  /// do not have standard names yet. For example, there is no standard algorithm name for
434  /// Shoup's ECIES.
435  /// \note AlgorithmName is not universally implemented yet
436  std::string AlgorithmName() const
437  {return (this->m_cipher ? this->m_cipher->AlgorithmName() + "/" : std::string("")) + BASE::StaticAlgorithmName();}
438 
439  // Algorithm class
440  std::string AlgorithmProvider() const
441  {return this->m_cipher->AlgorithmProvider();}
442 };
443 
447 
448 /// \brief CFB block cipher mode of operation
449 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
450 /// on the Crypto++ wiki.
451 template <class CIPHER>
453 {
456 };
457 
458 /// \brief CFB mode, external cipher.
459 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
460 /// on the Crypto++ wiki.
462 {
465 };
466 
467 /// \brief CFB block cipher mode of operation providing FIPS validated cryptography.
468 /// \details Requires full block plaintext according to FIPS 800-38A
469 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
470 /// on the Crypto++ wiki.
471 template <class CIPHER>
473 {
476 };
477 
478 /// \brief CFB mode, external cipher, providing FIPS validated cryptography.
479 /// \details Requires full block plaintext according to FIPS 800-38A
480 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
481 /// on the Crypto++ wiki.
483 {
486 };
487 
489 
490 /// \brief OFB block cipher mode of operation
491 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
492 /// on the Crypto++ wiki.
493 template <class CIPHER>
495 {
497  typedef Encryption Decryption;
498 };
499 
500 /// \brief OFB mode, external cipher.
501 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
502 /// on the Crypto++ wiki.
504 {
506  typedef Encryption Decryption;
507 };
508 
511 
512 /// \brief CTR block cipher mode of operation
513 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
514 /// on the Crypto++ wiki.
515 template <class CIPHER>
517 {
519  typedef Encryption Decryption;
520 };
521 
522 /// \brief CTR mode, external cipher.
523 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
524 /// on the Crypto++ wiki.
526 {
528  typedef Encryption Decryption;
529 };
530 
531 /// \brief ECB block cipher mode of operation
532 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
533 /// on the Crypto++ wiki.
534 template <class CIPHER>
536 {
539 };
540 
542 
543 /// \brief ECB mode, external cipher.
544 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
545 /// on the Crypto++ wiki.
547 {
549  typedef Encryption Decryption;
550 };
551 
552 /// \brief CBC block cipher mode of operation
553 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
554 /// on the Crypto++ wiki.
555 template <class CIPHER>
557 {
560 };
561 
564 
565 /// \brief CBC mode, external cipher
566 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
567 /// on the Crypto++ wiki.
569 {
572 };
573 
574 /// \brief CBC-CTS block cipher mode of operation
575 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
576 /// on the Crypto++ wiki.
577 /// \since Crypto++ 3.0
578 template <class CIPHER>
580 {
583 };
584 
587 
588 /// \brief CBC mode with ciphertext stealing, external cipher
589 /// \sa <A HREF="http://www.cryptopp.com/wiki/Modes_of_Operation">Modes of Operation</A>
590 /// on the Crypto++ wiki.
591 /// \since Crypto++ 3.0
593 {
596 };
597 
598 NAMESPACE_END
599 
600 // Issue 340
601 #if CRYPTOPP_MSC_VERSION
602 # pragma warning(pop)
603 #endif
604 
605 #if CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE
606 # pragma GCC diagnostic pop
607 #endif
608 
609 #endif
Classes for working with NameValuePairs.
AlgorithmParameters MakeParameters(const char *name, const T &value, bool throwIfNotUsed=true)
Create an object that implements NameValuePairs.
Definition: algparam.h:508
Standard names for retrieving values by name when working with NameValuePairs.
Base class for additive stream ciphers with SymmetricCipher interface.
Definition: strciphr.h:298
Base class information.
Definition: simple.h:40
Interface for one direction (encryption or decryption) of a block cipher.
Definition: cryptlib.h:1288
Block cipher mode of operation default implementation.
Definition: modes.h:251
void UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params)
Sets the key for this object without performing parameter validation.
bool IsForwardTransformation() const
Determines if the cipher is being operated in its forward direction.
Definition: modes.h:258
bool IsSelfInverting() const
Determines whether the cipher is self-inverting.
Definition: modes.h:257
bool IsRandomAccess() const
Determines whether the cipher supports random access.
Definition: modes.h:256
unsigned int MandatoryBlockSize() const
Provides the mandatory block size of the cipher.
Definition: modes.h:255
void Resynchronize(const byte *iv, int length=-1)
Resynchronize with an IV.
Definition: modes.h:260
CBC-CTS block cipher mode of operation decryption operation.
Definition: modes.h:338
size_t ProcessLastBlock(byte *outString, size_t outLength, const byte *inString, size_t inLength)
Encrypt or decrypt the last block of data.
unsigned int MinLastBlockSize() const
Provides the size of the last block.
Definition: modes.h:340
CBC-CTS block cipher mode of operation encryption operation.
Definition: modes.h:304
unsigned int MinLastBlockSize() const
Provides the size of the last block.
Definition: modes.h:309
size_t ProcessLastBlock(byte *outString, size_t outLength, const byte *inString, size_t inLength)
Encrypt or decrypt the last block of data.
CBC block cipher mode of operation decryption operation.
Definition: modes.h:324
void ProcessData(byte *outString, const byte *inString, size_t length)
Encrypt or decrypt an array of bytes.
CBC block cipher mode of operation encryption operation.
Definition: modes.h:296
void ProcessData(byte *outString, const byte *inString, size_t length)
Encrypt or decrypt an array of bytes.
CBC block cipher mode of operation default implementation.
Definition: modes.h:285
IV_Requirement IVRequirement() const
Minimal requirement for secure IVs.
Definition: modes.h:289
unsigned int MinLastBlockSize() const
Provides the size of the last block.
Definition: modes.h:291
Base class for feedback based stream ciphers with SymmetricCipher interface.
Definition: strciphr.h:568
Base class for feedback based stream ciphers in the reverse direction with SymmetricCipher interface.
Definition: strciphr.h:664
Base class for feedback based stream ciphers in the forward direction with SymmetricCipher interface.
Definition: strciphr.h:655
CFB block cipher mode of operation.
Definition: modes.h:166
IV_Requirement IVRequirement() const
Minimal requirement for secure IVs.
Definition: modes.h:172
CTR block cipher mode of operation.
Definition: modes.h:225
bool CipherIsRandomAccess() const
Flag indicating random access.
Definition: modes.h:230
IV_Requirement IVRequirement() const
Minimal requirement for secure IVs.
Definition: modes.h:231
Block cipher mode of operation information.
Definition: modes.h:50
unsigned int IVSize() const
Returns length of the IV accepted by this object.
Definition: modes.h:96
size_t GetValidKeyLength(size_t keylength) const
Returns a valid key length for the algorithm.
Definition: modes.h:79
void SetCipherWithIV(BlockCipher &cipher, const byte *iv, int feedbackSize=0)
Set external block cipher and IV.
Definition: modes.h:117
size_t MaxKeyLength() const
Returns largest valid key length.
Definition: modes.h:65
size_t DefaultKeyLength() const
Returns default key length.
Definition: modes.h:69
void SetCipher(BlockCipher &cipher)
Set external block cipher.
Definition: modes.h:105
virtual IV_Requirement IVRequirement() const =0
Minimal requirement for secure IVs.
unsigned int OptimalDataAlignment() const
Provides input and output data alignment for optimal performance.
Definition: modes.h:90
std::string AlgorithmProvider() const
Retrieve the provider of this algorithm.
Definition: modes.h:55
size_t MinKeyLength() const
Returns smallest valid key length.
Definition: modes.h:61
bool IsValidKeyLength(size_t keylength) const
Returns whether keylength is a valid key length.
Definition: modes.h:85
Block cipher mode of operation aggregate.
Definition: modes.h:347
CipherModeFinalTemplate_CipherHolder(const byte *key, size_t length, const byte *iv, int feedbackSize)
Construct a CipherModeFinalTemplate.
Definition: modes.h:394
CipherModeFinalTemplate_CipherHolder()
Construct a CipherModeFinalTemplate.
Definition: modes.h:358
CipherModeFinalTemplate_CipherHolder(const byte *key, size_t length)
Construct a CipherModeFinalTemplate.
Definition: modes.h:369
CipherModeFinalTemplate_CipherHolder(const byte *key, size_t length, const byte *iv)
Construct a CipherModeFinalTemplate.
Definition: modes.h:381
static std::string StaticAlgorithmName()
Provides the name of this algorithm.
Definition: modes.h:354
CipherModeFinalTemplate_ExternalCipher()
Construct a default CipherModeFinalTemplate.
Definition: modes.h:414
std::string AlgorithmName() const
Provides the name of this algorithm.
Definition: modes.h:436
CipherModeFinalTemplate_ExternalCipher(BlockCipher &cipher)
Construct a CipherModeFinalTemplate.
Definition: modes.h:419
CipherModeFinalTemplate_ExternalCipher(BlockCipher &cipher, const byte *iv, int feedbackSize=0)
Construct a CipherModeFinalTemplate.
Definition: modes.h:427
Used to pass byte array input as part of a NameValuePairs object.
Definition: algparam.h:25
ECB block cipher mode of operation default implementation.
Definition: modes.h:272
void ProcessData(byte *outString, const byte *inString, size_t length)
Encrypt or decrypt an array of bytes.
unsigned int OptimalBlockSize() const
Provides the input block size most efficient for this cipher.
Definition: modes.h:279
void SetKey(const byte *key, size_t length, const NameValuePairs &params=g_nullNameValuePairs)
Sets or reset the key of this object.
Definition: modes.h:276
IV_Requirement IVRequirement() const
Minimal requirement for secure IVs.
Definition: modes.h:278
An invalid argument was detected.
Definition: cryptlib.h:208
Block cipher mode of operation common operations.
Definition: modes.h:150
Interface for retrieving values given their names.
Definition: cryptlib.h:327
T GetValueWithDefault(const char *name, T defaultValue) const
Get a named value.
Definition: cryptlib.h:397
CRYPTOPP_DLL int GetIntValueWithDefault(const char *name, int defaultValue) const
Get a named value with type int, with default.
Definition: cryptlib.h:429
OFB block cipher mode of operation.
Definition: modes.h:209
bool CipherIsRandomAccess() const
Flag indicating random access.
Definition: modes.h:213
IV_Requirement IVRequirement() const
Minimal requirement for secure IVs.
Definition: modes.h:214
Uses encapsulation to hide an object in derived classes.
Definition: misc.h:230
SecBlock<byte> typedef.
Definition: secblock.h:1226
bool IsResynchronizable() const
Determines if the object can be resynchronized.
Definition: cryptlib.h:745
IV_Requirement
Secure IVs requirements as enumerated values.
Definition: cryptlib.h:724
@ UNIQUE_IV
The IV must be unique.
Definition: cryptlib.h:726
@ RANDOM_IV
The IV must be random and possibly predictable.
Definition: cryptlib.h:728
@ NOT_RESYNCHRONIZABLE
The object does not use an IV.
Definition: cryptlib.h:734
@ UNPREDICTABLE_RANDOM_IV
The IV must be random and unpredictable.
Definition: cryptlib.h:730
virtual void SetKey(const byte *key, size_t length, const NameValuePairs &params=g_nullNameValuePairs)
Sets or reset the key of this object.
virtual void Resynchronize(const byte *iv, int ivLength=-1)
Resynchronize with an IV.
Definition: cryptlib.h:788
Interface for one direction (encryption or decryption) of a stream cipher or cipher mode.
Definition: cryptlib.h:1296
#define CRYPTOPP_API
Win32 calling convention.
Definition: config_dll.h:119
#define CRYPTOPP_DLL_TEMPLATE_CLASS
Instantiate templates in a dynamic library.
Definition: config_dll.h:72
word64 lword
Large word type.
Definition: config_int.h:168
Abstract base classes that provide a uniform interface to this library.
CipherDir
Specifies a direction for a cipher to operate.
Definition: cryptlib.h:128
const NameValuePairs & g_nullNameValuePairs
An empty set of name-value pairs.
Definition: cryptlib.h:534
Utility functions for the Crypto++ library.
void memcpy_s(void *dest, size_t sizeInBytes, const void *src, size_t count)
Bounds checking replacement for memcpy()
Definition: misc.h:527
void CopyOrZero(void *dest, size_t dsize, const void *src, size_t ssize)
Initialize a block of memory.
Definition: modes.h:196
Crypto++ library namespace.
const char * FeedbackSize()
int
Definition: argnames.h:25
const char * IV()
ConstByteArrayParameter, also accepts const byte * for backwards compatibility.
Definition: argnames.h:21
const char * StolenIV()
byte *
Definition: argnames.h:22
const char * BlockSize()
int, in bytes
Definition: argnames.h:27
Classes and functions for secure memory allocations.
Classes for implementing stream ciphers.
KeystreamOperation
Keystream operation flags.
Definition: strciphr.h:88
@ WRITE_KEYSTREAM
Write the keystream to the output buffer, input is NULL.
Definition: strciphr.h:90
CBC mode with ciphertext stealing, external cipher.
Definition: modes.h:593
CBC-CTS block cipher mode of operation.
Definition: modes.h:580
CBC mode, external cipher.
Definition: modes.h:569
CBC block cipher mode of operation.
Definition: modes.h:557
CFB mode, external cipher, providing FIPS validated cryptography.
Definition: modes.h:483
CFB block cipher mode of operation providing FIPS validated cryptography.
Definition: modes.h:473
CFB mode, external cipher.
Definition: modes.h:462
CFB block cipher mode of operation.
Definition: modes.h:453
CTR mode, external cipher.
Definition: modes.h:526
CTR block cipher mode of operation.
Definition: modes.h:517
Block cipher mode of operation information.
Definition: modes.h:45
ECB mode, external cipher.
Definition: modes.h:547
ECB block cipher mode of operation.
Definition: modes.h:536
OFB mode, external cipher.
Definition: modes.h:504
OFB block cipher mode of operation.
Definition: modes.h:495
Provides Encryption and Decryption typedefs used by derived classes to implement a symmetric cipher.
Definition: seckey.h:414
#define CRYPTOPP_ASSERT(exp)
Debugging and diagnostic assertion.
Definition: trap.h:68