Fabcoin Core  0.16.2
P2P Digital Currency
serpent.h
Go to the documentation of this file.
1 // serpent.h - written and placed in the public domain by Wei Dai
2 
5 
6 #ifndef CRYPTOPP_SERPENT_H
7 #define CRYPTOPP_SERPENT_H
8 
9 #include "seckey.h"
10 #include "secblock.h"
11 
13 
14 struct Serpent_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>, public FixedRounds<32>
17 {
18  CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "Serpent";}
19 };
20 
25 {
26  class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<Serpent_Info>
27  {
28  public:
29  void UncheckedSetKey(const byte *userKey, unsigned int length, const NameValuePairs &params);
30 
31  protected:
33  };
34 
35  class CRYPTOPP_NO_VTABLE Enc : public Base
36  {
37  public:
38  void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
39  };
40 
41  class CRYPTOPP_NO_VTABLE Dec : public Base
42  {
43  public:
44  void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
45  };
46 
47 public:
50 };
51 
54 
56 
57 #endif
Serpent::Decryption SerpentDecryption
Definition: serpent.h:53
uint8_t byte
Definition: Common.h:57
#define CRYPTOPP_STATIC_CONSTEXPR
Definition: config.h:892
Provides Encryption and Decryption typedefs used by derived classes to implement a block cipher...
Definition: seckey.h:408
BlockCipherFinal< DECRYPTION, Dec > Decryption
Definition: serpent.h:49
#define NAMESPACE_BEGIN(x)
Definition: config.h:200
CRYPTOPP_STATIC_CONSTEXPR const char * StaticAlgorithmName()
Definition: serpent.h:18
Serpent block cipher.
Definition: serpent.h:24
Classes and functions for secure memory allocations.
Inherited by algorithms with fixed block size.
Definition: seckey.h:40
Classes and functions for implementing secret key algorithms.
Inherited by algorithms with fixed number of rounds.
Definition: seckey.h:53
Inherited by keyed algorithms with variable key length.
Definition: seckey.h:169
#define CRYPTOPP_NO_VTABLE
Definition: config.h:369
Serpent block cipher information.
Definition: serpent.h:16
BlockCipherFinal< ENCRYPTION, Enc > Encryption
Definition: serpent.h:48
Serpent::Encryption SerpentEncryption
Definition: serpent.h:52
#define NAMESPACE_END
Definition: config.h:201
Provides a base implementation of Algorithm and SimpleKeyingInterface for block ciphers.
Definition: seckey.h:311
Interface for retrieving values given their names.
Definition: cryptlib.h:279
FixedSizeSecBlock< word32, 33 *4 > m_key
Definition: serpent.h:32