source: git/src-cryptopp/serpent.h

Last change on this file was e230cb0, checked in by David Stainton <dstainton415@…>, at 2016-10-12T13:27:29Z

Add cryptopp from tag CRYPTOPP_5_6_5

  • Property mode set to 100644
File size: 1.5 KB
Line 
1// serpent.h - written and placed in the public domain by Wei Dai
2
3//! \file serpent.h
4//! \brief Classes for the Serpent block cipher
5
6#ifndef CRYPTOPP_SERPENT_H
7#define CRYPTOPP_SERPENT_H
8
9#include "seckey.h"
10#include "secblock.h"
11
12NAMESPACE_BEGIN(CryptoPP)
13
14//! \class Serpent_Info
15//! \brief Serpent block cipher information
16struct Serpent_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>, public FixedRounds<32>
17{
18        CRYPTOPP_CONSTEXPR static const char *StaticAlgorithmName() {return "Serpent";}
19};
20
21//! \class Serpent
22//! \brief Serpent block cipher
23/// \sa <a href="http://www.weidai.com/scan-mirror/cs.html#Serpent">Serpent</a>
24class Serpent : public Serpent_Info, public BlockCipherDocumentation
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:
32                FixedSizeSecBlock<word32, 33*4> m_key;
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
47public:
48        typedef BlockCipherFinal<ENCRYPTION, Enc> Encryption;
49        typedef BlockCipherFinal<DECRYPTION, Dec> Decryption;
50};
51
52typedef Serpent::Encryption SerpentEncryption;
53typedef Serpent::Decryption SerpentDecryption;
54
55NAMESPACE_END
56
57#endif
Note: See TracBrowser for help on using the repository browser.