Fabcoin Core  0.16.2
P2P Digital Currency
mars.h
Go to the documentation of this file.
1 // mars.h - written and placed in the public domain by Wei Dai
2 
5 
6 #ifndef CRYPTOPP_MARS_H
7 #define CRYPTOPP_MARS_H
8 
9 #include "seckey.h"
10 #include "secblock.h"
11 
13 
14 struct MARS_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 56, 8>
17 {
18  CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "MARS";}
19 };
20 
24 class MARS : public MARS_Info, public BlockCipherDocumentation
25 {
26  class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<MARS_Info>
27  {
28  public:
29  void UncheckedSetKey(const byte *userKey, unsigned int length, const NameValuePairs &params);
30 
31  protected:
32  static const word32 Sbox[512];
33 
35  };
36 
37  class CRYPTOPP_NO_VTABLE Enc : public Base
38  {
39  public:
40  void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
41  };
42 
43  class CRYPTOPP_NO_VTABLE Dec : public Base
44  {
45  public:
46  void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
47  };
48 
49 public:
52 };
53 
56 
58 
59 #endif
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
#define NAMESPACE_BEGIN(x)
Definition: config.h:200
CRYPTOPP_STATIC_CONSTEXPR const char * StaticAlgorithmName()
Definition: mars.h:18
Definition: mars.h:37
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.
Definition: mars.h:43
BlockCipherFinal< DECRYPTION, Dec > Decryption
Definition: mars.h:51
MARS::Decryption MARSDecryption
Definition: mars.h:55
FixedSizeSecBlock< word32, 40 > m_k
Definition: mars.h:34
MARS block cipher information.
Definition: mars.h:16
Inherited by keyed algorithms with variable key length.
Definition: seckey.h:169
#define CRYPTOPP_NO_VTABLE
Definition: config.h:369
MARS::Encryption MARSEncryption
Definition: mars.h:54
#define NAMESPACE_END
Definition: config.h:201
Provides a base implementation of Algorithm and SimpleKeyingInterface for block ciphers.
Definition: seckey.h:311
BlockCipherFinal< ENCRYPTION, Enc > Encryption
Definition: mars.h:50
unsigned int word32
Definition: config.h:231
MARS block cipher.
Definition: mars.h:24
Interface for retrieving values given their names.
Definition: cryptlib.h:279