Security Scol plugin
mars.h
Go to the documentation of this file.
1// mars.h - originally written and placed in the public domain by Wei Dai
2
6
7#ifndef CRYPTOPP_MARS_H
8#define CRYPTOPP_MARS_H
9
10#include "seckey.h"
11#include "secblock.h"
12
13NAMESPACE_BEGIN(CryptoPP)
14
15
17struct MARS_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 56, 8>
18{
19 CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "MARS";}
20};
21
26{
27 class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<MARS_Info>
28 {
29 public:
30 void UncheckedSetKey(const byte *userKey, unsigned int length, const NameValuePairs &params);
31
32 protected:
33 static const word32 Sbox[512];
34
36 };
37
38 class CRYPTOPP_NO_VTABLE Enc : public Base
39 {
40 public:
41 void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
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 };
49
50public:
53};
54
57
58NAMESPACE_END
59
60#endif
Provides class member functions to key a block cipher.
Definition seckey.h:318
Provides a base implementation of Algorithm and SimpleKeyingInterface for block ciphers.
Definition seckey.h:306
Inherited by algorithms with fixed block size.
Definition seckey.h:41
Fixed size stack-based SecBlock.
Definition secblock.h:1246
MARS block cipher.
Definition mars.h:26
Interface for retrieving values given their names.
Definition cryptlib.h:322
Inherited by keyed algorithms with variable key length.
Definition seckey.h:166
unsigned int word32
32-bit unsigned datatype
Definition config_int.h:62
Classes and functions for secure memory allocations.
Classes and functions for implementing secret key algorithms.
Provides Encryption and Decryption typedefs used by derived classes to implement a block cipher.
Definition seckey.h:399
MARS block cipher information.
Definition mars.h:18