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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
| // Gets the unsigned char at specified postion, position based in array of unsigned char
unsigned char* BaseCryptoRandomStream::GetUCAddressPosition(unsigned long int pos) {
if ( pos >= this->GetUCLength() )
return NULL;
else
return (unsigned char *)(&(this->cryptoStream[pos * sizeof(unsigned char)]));
}
// Gets the unsigned short at specified postion, position based in array of unsigned short
unsigned short int* BaseCryptoRandomStream::GetUSAddressPosition(unsigned long int pos) {
if ( pos >= this->GetUSLength() )
return NULL;
else
return (unsigned short int *)(&(this->cryptoStream[pos * sizeof(unsigned short int)]));
}
// Gets the unsigned long at specified postion, position based in array of unsigned long
unsigned long int* BaseCryptoRandomStream::GetULAddressPosition(unsigned long int pos) {
if ( pos >= this->GetULLength() )
return NULL;
else
return (unsigned long int *)(&(this->cryptoStream[pos * sizeof(unsigned long int)]));
}
// Gets the unsigned 64 bit at specified postion, position based in array of unsigned 64 bit
unsigned __int64* BaseCryptoRandomStream::Get64AddressPosition(unsigned __int64 pos) {
if ( pos >= this->Get64Length() )
return NULL;
else
return (unsigned __int64 *)(&(this->cryptoStream[pos * sizeof(unsigned __int64)]));
}
// Gets the baseCryptoRandomStream portion at specified postion with
// from baseCryptoRandomStream object, position and length based in array of unsigned char
void BaseCryptoRandomStream::GetUCSubRandomStream(BaseCryptoRandomStream* subStream, unsigned long int pos) {
try {
if ( pos >= this->GetUCLength() ) {
throw "Positions exceeded stream length !";
}
else {
subStream->bitLength = this->GetBitLength() - (pos * BYTEBITS);
subStream->cryptoStream = (bitItem *)(&(this->cryptoStream[pos * sizeof(unsigned char)]));
}
}
catch (char* str) {
throw str;
}
}
// Gets the baseCryptoRandomStream portion at specified postion
// from baseCryptoRandomStream object, position and length based in array of unsigned short int
void BaseCryptoRandomStream::GetUSSubRandomStream(BaseCryptoRandomStream* subStream, unsigned long int pos) {
try {
if ( pos >= this->GetUSLength() ) {
throw "Positions exceeded stream length !";
}
else {
subStream->bitLength = this->GetBitLength() - (pos * BYTEBITS * sizeof(unsigned short int));
subStream->cryptoStream = (bitItem *)(&(this->cryptoStream[pos * sizeof(unsigned short int)]));
}
}
catch (char* str) {
throw str;
}
}
// Gets the baseCryptoRandomStream portion at specified postion
// from baseCryptoRandomStream object, position and length based in array of unsigned long int
void BaseCryptoRandomStream::GetULSubRandomStream(BaseCryptoRandomStream* subStream, unsigned long int pos) {
try {
if ( pos >= this->GetULLength() ) {
throw "Positions exceeded stream length !";
}
else {
subStream->bitLength = this->GetBitLength() - (pos * BYTEBITS * sizeof(unsigned long int));
subStream->cryptoStream = (bitItem *)(&(this->cryptoStream[pos * sizeof(unsigned long int)]));
}
}
catch (char* str) {
throw str;
}
}
// Gets the baseCryptoRandomStream portion at specified postion with a specified length
// from baseCryptoRandomStream object, position and length based in array of unsigned char
void BaseCryptoRandomStream::GetUCSubRandomStream(BaseCryptoRandomStream* subStream, unsigned long int pos, unsigned long int length) {
try {
if ( pos >= this->GetUCLength() ) {
throw "Positions exceeded stream length !";
}
else {
if ( (pos + length) > (this->GetBitLength() / (BYTEBITS * sizeof(unsigned char))) ) {
throw "Positions plus length exceeded stream length !";
}
else {
subStream->bitLength = length * BYTEBITS;
subStream->cryptoStream = (bitItem *)(&(this->cryptoStream[pos * sizeof(unsigned char)]));
}
}
}
catch (char* str) {
throw str;
}
}
// Gets the baseCryptoRandomStream portion at specified postion with a specified length
// from baseCryptoRandomStream object, position and length based in array of unsigned short int
void BaseCryptoRandomStream::GetUSSubRandomStream(BaseCryptoRandomStream* subStream, unsigned long int pos, unsigned long int length) {
try {
if ( pos >= this->GetUSLength() ) {
throw "Positions exceeded stream length !";
}
else {
if ( (pos + length) > (this->GetBitLength() / (BYTEBITS * sizeof(unsigned short int))) ) {
throw "Positions plus length exceeded stream length !";
}
else {
subStream->bitLength = length * BYTEBITS * sizeof(unsigned short int);
subStream->cryptoStream = (bitItem *)(&(this->cryptoStream[pos * sizeof(unsigned short int)]));
}
}
}
catch (char* str) {
throw str;
}
}
// Gets the baseCryptoRandomStream portion at specified postion with a specified length
// from baseCryptoRandomStream object, position and length based in array of unsigned long int
void BaseCryptoRandomStream::GetULSubRandomStream(BaseCryptoRandomStream* subStream, unsigned long int pos, unsigned long int length) {
try {
if ( pos >= this->GetULLength() ) {
throw "Positions exceeded stream length !";
}
else {
if ( (pos + length) > (this->GetBitLength() / (BYTEBITS * sizeof(unsigned long int))) ) {
throw "Positions plus length exceeded stream length !";
}
else {
subStream->bitLength = length * BYTEBITS * sizeof(unsigned long int);
subStream->cryptoStream = (bitItem *)(&(this->cryptoStream[pos * sizeof(unsigned long int)]));
}
}
}
catch (char* str) {
throw str;
}
}
// Reduces considered length of BaseCryptoRandomStream, real length is mantained,
// but any access to BaseCryptoRandomStream through the interface will be limited to
// the new considered length. BaseCryptoRandomStream will remain with its original
// length and using the specified memory.
// Reduces length in bits.
void BaseCryptoRandomStream::ReduceBitLength(unsigned long int value) {
if ( this->reducedBitLength ) {
this->reducedBitLength -= value;
}
else {
this->reducedBitLength = this->bitLength - value;
}
}
// Reduces considered length of BaseCryptoRandomStream, real length is mantained,
// but any access to BaseCryptoRandomStream through the interface will be limited to
// the new considered length. BaseCryptoRandomStream will remain with its original
// length and using the specified memory.
// Reduces length in unsigned chars.
void BaseCryptoRandomStream::ReduceUCLength(unsigned long int value) {
if ( this->reducedBitLength ) {
this->reducedBitLength -= (value * BYTEBITS);
}
else {
this->reducedBitLength = this->bitLength - (value * BYTEBITS);
}
}
// Reduces considered length of BaseCryptoRandomStream, real length is mantained,
// but any access to BaseCryptoRandomStream through the interface will be limited to
// the new considered length. BaseCryptoRandomStream will remain with its original
// length and using the specified memory.
// Reduces length in unsigned short ints.
void BaseCryptoRandomStream::ReduceUSLength(unsigned long int value) {
if ( this->reducedBitLength ) {
this->reducedBitLength -= (value * BYTEBITS * sizeof(unsigned short int));
}
else {
this->reducedBitLength = this->bitLength - (value * BYTEBITS * sizeof(unsigned short int));
}
}
// Reduces considered length of BaseCryptoRandomStream, real length is mantained,
// but any access to BaseCryptoRandomStream through the interface will be limited to
// the new considered length. BaseCryptoRandomStream will remain with its original
// length and using the specified memory.
// Reduces length in unsigned long ints.
void BaseCryptoRandomStream::ReduceULLength(unsigned long int value) {
if ( this->reducedBitLength ) {
this->reducedBitLength -= (value * BYTEBITS * sizeof(unsigned long int));
}
else {
this->reducedBitLength = this->bitLength - (value * BYTEBITS * sizeof(unsigned long int));
}
}
// Indicates if BaseCryptoRandomStream's length has been reduced in a
// fictitious way
bool BaseCryptoRandomStream::ReducedLength(void) {
return (this->reducedBitLength != 0);
}
// Restores original length of BaseCryptoRandomStream and removes any
// fictitious reduced length
void BaseCryptoRandomStream::RestoreLength(void) {
this->reducedBitLength = 0;
}
// Operator equal, compares the BaseCryptoRandomStream object with the
// BaseCryptoRandomStream parameter
bool BaseCryptoRandomStream::Equals(BaseCryptoRandomStream* otherStream) {
if (otherStream == NULL) {
return false;
}
else {
if (this->GetBitLength() != otherStream->GetBitLength()) {
return false;
}
else {
return (! memcmp(this->cryptoStream, otherStream->cryptoStream, this->GetUCLength()));
}
}
}
// Operator copy, copies the content of BaseCryptoRandomStream object
// to the BaseCryptoRandomStream object passed as parameter
void BaseCryptoRandomStream::Copy(BaseCryptoRandomStream* target) {
try {
if ( this->GetUCLength() != target->GetUCLength() )
throw "Streams have different lengths !";
else {
memcpy(target->cryptoStream, this->cryptoStream, this->GetUCLength());
}
}
catch (char* str) {
throw str;
}
}
}
}
|