summaryrefslogtreecommitdiff
path: root/diamond.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2002-10-04 17:31:41 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2002-10-04 17:31:41 +0000
commitb21162cf8e06f40baa1f58be6a8c17435cebc34d (patch)
tree8b045309c238226c32a563b1df6b9c30a2f0e0b3 /diamond.h
downloadcryptopp-b21162cf8e06f40baa1f58be6a8c17435cebc34d.tar.gz
Initial revision
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@2 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'diamond.h')
-rw-r--r--diamond.h109
1 files changed, 109 insertions, 0 deletions
diff --git a/diamond.h b/diamond.h
new file mode 100644
index 0000000..1aae696
--- /dev/null
+++ b/diamond.h
@@ -0,0 +1,109 @@
+#ifndef CRYPTOPP_DIAMOND_H
+#define CRYPTOPP_DIAMOND_H
+
+/** \file
+*/
+
+#include "seckey.h"
+#include "secblock.h"
+
+NAMESPACE_BEGIN(CryptoPP)
+
+struct Diamond2_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 1, 256>, public VariableRounds<10>
+{
+ static const char *StaticAlgorithmName() {return "Diamond2";}
+};
+
+/// <a href="http://www.weidai.com/scan-mirror/cs.html#Diamond2">Diamond2</a>
+class Diamond2 : public Diamond2_Info, public BlockCipherDocumentation
+{
+ class Base : public BlockCipherBaseTemplate<Diamond2_Info>
+ {
+ public:
+ void UncheckedSetKey(CipherDir direction, const byte *userKey, unsigned int length, unsigned int rounds);
+
+ protected:
+ enum {ROUNDSIZE=4096};
+ inline void substitute(int round, byte *x, const byte *y) const;
+
+ int numrounds;
+ SecByteBlock s; // Substitution boxes
+
+ static inline void permute(byte *);
+ static inline void ipermute(byte *);
+#ifdef DIAMOND_USE_PERMTABLE
+ static const word32 permtable[9][256];
+ static const word32 ipermtable[9][256];
+#endif
+ };
+
+ class Enc : public Base
+ {
+ public:
+ void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
+ };
+
+ class Dec : public Base
+ {
+ public:
+ void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
+ };
+
+public:
+ typedef BlockCipherTemplate<ENCRYPTION, Enc> Encryption;
+ typedef BlockCipherTemplate<DECRYPTION, Dec> Decryption;
+};
+
+typedef Diamond2::Encryption Diamond2Encryption;
+typedef Diamond2::Decryption Diamond2Decryption;
+
+struct Diamond2Lite_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 1, 256>, public VariableRounds<8>
+{
+ static const char *StaticAlgorithmName() {return "Diamond2Lite";}
+};
+
+/// <a href="http://www.weidai.com/scan-mirror/cs.html#Diamond2">Diamond2Lite</a>
+class Diamond2Lite : public Diamond2Lite_Info, public BlockCipherDocumentation
+{
+ class Base : public BlockCipherBaseTemplate<Diamond2Lite_Info>
+ {
+ public:
+ void UncheckedSetKey(CipherDir direction, const byte *userKey, unsigned int length, unsigned int rounds);
+
+ protected:
+ enum {ROUNDSIZE=2048};
+ inline void substitute(int round, byte *x, const byte *y) const;
+ int numrounds;
+ SecByteBlock s; // Substitution boxes
+
+ static inline void permute(byte *);
+ static inline void ipermute(byte *);
+ #ifdef DIAMOND_USE_PERMTABLE
+ static const word32 permtable[8][256];
+ static const word32 ipermtable[8][256];
+ #endif
+ };
+
+ class Enc : public Base
+ {
+ public:
+ void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
+ };
+
+ class Dec : public Base
+ {
+ public:
+ void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
+ };
+
+public:
+ typedef BlockCipherTemplate<ENCRYPTION, Enc> Encryption;
+ typedef BlockCipherTemplate<DECRYPTION, Dec> Decryption;
+};
+
+typedef Diamond2Lite::Encryption Diamond2LiteEncryption;
+typedef Diamond2Lite::Decryption Diamond2LiteDecryption;
+
+NAMESPACE_END
+
+#endif