Fabcoin Core  0.16.2
P2P Digital Currency
square.h
Go to the documentation of this file.
1 // square.h - written and placed in the public domain by Wei Dai
2 
5 
6 #ifndef CRYPTOPP_SQUARE_H
7 #define CRYPTOPP_SQUARE_H
8 
9 #include "seckey.h"
10 #include "secblock.h"
11 
13 
14 struct Square_Info : public FixedBlockSize<16>, public FixedKeyLength<16>, FixedRounds<8>
17 {
18  CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "Square";}
19 };
20 
25 {
26  class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<Square_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  private:
40  static const byte Se[256];
41  static const word32 Te[4][256];
42  };
43 
44  class CRYPTOPP_NO_VTABLE Dec : public Base
45  {
46  public:
47  void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
48  private:
49  static const byte Sd[256];
50  static const word32 Td[4][256];
51  };
52 
53 public:
56 };
57 
60 
62 
63 #endif
Inherited by keyed algorithms with fixed key length.
Definition: seckey.h:127
uint8_t byte
Definition: Common.h:57
#define CRYPTOPP_STATIC_CONSTEXPR
Definition: config.h:892
Square::Decryption SquareDecryption
Definition: square.h:59
Provides Encryption and Decryption typedefs used by derived classes to implement a block cipher...
Definition: seckey.h:408
#define NAMESPACE_BEGIN(x)
Definition: config.h:200
Square block cipher.
Definition: square.h:24
BlockCipherFinal< ENCRYPTION, Enc > Encryption
Definition: square.h:54
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.
FixedSizeSecBlock< word32, 4 *(ROUNDS+1)> m_roundkeys
Definition: square.h:32
BlockCipherFinal< DECRYPTION, Dec > Decryption
Definition: square.h:55
Inherited by algorithms with fixed number of rounds.
Definition: seckey.h:53
#define CRYPTOPP_NO_VTABLE
Definition: config.h:369
CRYPTOPP_STATIC_CONSTEXPR const char * StaticAlgorithmName()
Definition: square.h:18
Square block cipher information.
Definition: square.h:16
#define NAMESPACE_END
Definition: config.h:201
Provides a base implementation of Algorithm and SimpleKeyingInterface for block ciphers.
Definition: seckey.h:311
Square::Encryption SquareEncryption
Definition: square.h:58
unsigned int word32
Definition: config.h:231
Interface for retrieving values given their names.
Definition: cryptlib.h:279