Monday, 21 May 2012

DiceLockSecurity Knowledge

Windows - Source Code

Linux - Source Code

Apple Mac OS X

JAVA - Source Code

DOCUMENTATION - Inside Knowledge

DOCUMENTATION - Self browser view

HOW TO

arrow DiceLock 5.0.0.1 arrow hashSuite.h
hashSuite.h (Hash algorithm suite header source code file) Print E-mail
Get C++ and Java source code with ready to use project files for Microsoft Visual Studio for Windows, Oracle JDeveloper for Java JRE, Xcode for Mac OS X and Eclipse CDT with Nokia QT for Linux ...
VisualStudio.pngjdeveloper.pngXcode.pngeclipse-cdt.pngqt.png

DiceLock is protected by US patent 7508945 and European Patent 1182777 where applicable.

DiceLock and DiceLock logo are trademarks or registered trademarks in the EC, USA and others.

License information can be obtained at our corporate web site




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
 
//
// Creator:    http://www.dicelocksecurity.com
// Version:    vers.5.0.0.1
//
// Copyright © 2009-2011 DiceLock Security, LLC. All rights reserved.
//
//                               DISCLAIMER
//
// THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
// REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// 
// DICELOCK IS A REGISTERED TRADEMARK OR TRADEMARK OF THE OWNERS.
// 
 
#ifndef HASHSUITE_HPP
 
#define HASHSUITE_HPP
 
#ifdef DICELOCKCIPHER_EXPORTS
   #define CLASS_DECLSPEC    __declspec(dllexport)
#else
   #define CLASS_DECLSPEC    __declspec(dllimport)
#endif
 
#include "hashDigester.h"
 
 
namespace DiceLockSecurity {
 
  namespace Hash {
 
    class HashSuite {
 
    protected:
 
      // Points the first hash algorithm in the suite
      static const  Hashes firstHash;
 
      BaseHash*        suite[NumberOfHashes];
      bool          selfCreatedHash[NumberOfHashes];
      int            instantiatedHashes;
 
    public:
 
      // Constructor, default, initializes suite 
      CLASS_DECLSPEC HashSuite();
 
      // Destructor
      CLASS_DECLSPEC ~HashSuite();
 
      // ADDING HASHES
      
      // Adds a hash to the suite
      CLASS_DECLSPEC void Add(BaseHash*);
 
      // Creates and adds a hash to the suite based in the enumerated hash list
      CLASS_DECLSPEC void Add(Hashes);
 
      // Creates and adds all hash algorithms to the suite
      CLASS_DECLSPEC void AddAll(void);
 
      // Creates and adds the defined hash to the suite
      CLASS_DECLSPEC void AddSha1(void);
 
      // Creates and adds the defined hash to the suite
      CLASS_DECLSPEC void AddSha224(void);
 
      // Creates and adds the defined hash to the suite
      CLASS_DECLSPEC void AddSha256(void);
 
      // Creates and adds the defined hash to the suite
      CLASS_DECLSPEC void AddSha384(void);
 
      // Creates and adds the defined hash to the suite
      CLASS_DECLSPEC void AddSha512(void);
 
      // Creates and adds the defined hash to the suite
      CLASS_DECLSPEC void AddRipemd128(void);
 
      // Creates and adds the defined hash to the suite
      CLASS_DECLSPEC void AddRipemd160(void);
 
      // Creates and adds the defined hash to the suite
      CLASS_DECLSPEC void AddRipemd256(void);
 
      // Creates and adds the defined hash to the suite
      CLASS_DECLSPEC void AddRipemd320(void);
 
      // GETTING HASH OBJECT
      
      // Gets a hash algorithm from the suite based in the enumerated hash
      CLASS_DECLSPEC BaseHash* GetMessageDigest(Hashes);
 
      // Gets the defined hash from the suite
      CLASS_DECLSPEC Sha1* GetSha1(void);
 
      // Gets the defined hash from the suite
      CLASS_DECLSPEC Sha224* GetSha224(void);
 
      // Gets the defined hash from the suite
      CLASS_DECLSPEC Sha256* GetSha256(void);
 
      // Gets the defined hash from the suite
      CLASS_DECLSPEC Sha384* GetSha384(void);
 
      // Gets the defined hash from the suite
      CLASS_DECLSPEC Sha512* GetSha512(void);
 
      // Gets the defined hash from the suite
      CLASS_DECLSPEC Ripemd128* GetRipemd128(void);
 
      // Gets the defined hash from the suite
      CLASS_DECLSPEC Ripemd160* GetRipemd160(void);
 
      // Gets the defined hash from the suite
      CLASS_DECLSPEC Ripemd256* GetRipemd256(void);
 
      // Gets the defined hash from the suite
      CLASS_DECLSPEC Ripemd320* GetRipemd320(void);
 
      // REMOVING HASH ALGORITHMS
 
      // Removes the pointed hash from the suite
      CLASS_DECLSPEC void Remove(BaseHash*);
 
      // Removes a hash from the suite based in the enumerated hash algorithms
      CLASS_DECLSPEC void Remove(Hashes);
 
      // Removes all hash algorithms from the suite
      CLASS_DECLSPEC void RemoveAll(void);
 
      // Removes the defined hash from the suite
      CLASS_DECLSPEC void RemoveSha1(void);
 
      // Removes the defined hash from the suite
      CLASS_DECLSPEC void RemoveSha224(void);
 
      // Removes the defined hash from the suite
      CLASS_DECLSPEC void RemoveSha256(void);
 
      // Removes the defined hash from the suite
      CLASS_DECLSPEC void RemoveSha384(void);
 
      // Removes the defined hash from the suite
      CLASS_DECLSPEC void RemoveSha512(void);
 
      // Removes the defined hash from the suite
      CLASS_DECLSPEC void RemoveRipemd128(void);
 
      // Removes the defined hash from the suite
      CLASS_DECLSPEC void RemoveRipemd160(void);
 
      // Removes the defined hash from the suite
      CLASS_DECLSPEC void RemoveRipemd256(void);
 
      // Removes the defined hash from the suite
      CLASS_DECLSPEC void RemoveRipemd320(void);
 
      // PERFORMING HASH
 
      // Performs the hash algorithms of BaseCryptoRandomStream with all instantiated hash 
      CLASS_DECLSPEC void Hash(BaseCryptoRandomStream*);
 
      // INITIALIZE SUITE
      
      // Initializes all hash algorithms in the suite
      CLASS_DECLSPEC void Initialize(void);
 
      // ADDS STREAM TO THE SUITE
      
      // Adds BaseCryptoRandomStream stream to hash algorithms in the suite
      CLASS_DECLSPEC void Add(BaseCryptoRandomStream*);
 
      // FINALIZE THE SUITE
      
      // Finalize hash algorithms in the suite
      CLASS_DECLSPEC void Finalize(void);
 
      // GETTING SUITE INFORMATION
 
      // Gets the number of hash algorithms that contains the suite
      CLASS_DECLSPEC unsigned long int GetInstantiatedHashes(void);
 
      // Indicates if a hash algorithm exists in the suite
      CLASS_DECLSPEC bool Exist(Hashes);
 
      // Gets the first hash algorithm in the HashSuite
      CLASS_DECLSPEC Hashes GetFirstHash(void);
 
      // Gets the number of hash algorithms that can be used in the HahsSuite
      CLASS_DECLSPEC Hashes GetMaximumNumberOfHashes(void);
  };
  }
}
 
#endif
 
 



Close Me  
Get FREE Random Number Test Windows DLL !
Get FREE Hash Algorithms Windows DLL !