-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrypto.hash.cubehash.c
368 lines (296 loc) · 9.51 KB
/
crypto.hash.cubehash.c
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
/**
* Melon Software Framework is Copyright (C) 2021 - 2025 Knot126
*
* =============================================================================
*
* Implementation of DJB's CubeHash
*/
#include "error.h"
#include "memory.h"
#include "string.h"
#include "log.h"
#include "crypto.hash.cubehash.h"
#define ROTL(x, n) ((x << n) | (x >> (32 - n)))
#define SWAP(T, X, Y) \
T temp = X; \
X = Y; \
Y = temp;
static void DgCryptoCubeHashRound(uint32_t * const block) {
/**
* Preform one round of the core CubeHash function inplace
*
* @see https://en.wikipedia.org/wiki/CubeHash
* @see https://cubehash.cr.yp.to/index.html
*
* @param block Block to preform the round function on
*/
// 1. Add x[0jklm] into x[1jklm] modulo 2^32, for each (j,k,l,m).
for (size_t i = 0; i <= 0b1111; i++) {
block[0b10000 | i] += block[i];
}
// 2. Rotate x[0jklm] upwards by 7 bits, for each (j,k,l,m).
for (size_t i = 0; i <= 0b1111; i++) {
block[i] = ROTL(block[i], 7);
}
// 3. Swap x[00klm] with x[01klm], for each (k,l,m).
for (size_t i = 0; i <= 0b111; i++) {
SWAP(uint32_t, block[i], block[0b1000 | i]);
}
// 4. Xor x[1jklm] into x[0jklm], for each (j,k,l,m).
for (size_t i = 0; i <= 0b1111; i++) {
block[i] ^= block[0b10000 | i];
}
// 5. Swap x[1jk0m] with x[1jk1m], for each (j,k,m).
for (size_t i = 0; i <= 0b11; i++) {
for (size_t j = 0; j <= 0b1; j++) {
size_t k = (i << 2) | j;
SWAP(uint32_t, block[0b10000 | k], block[0b10010 | k]);
}
}
// 6. Add x[0jklm] into x[1jklm] modulo 2^32, for each (j,k,l,m).
for (size_t i = 0; i <= 0b1111; i++) {
block[0b10000 | i] += block[i];
}
// 7. Rotate x[0jklm] upwards by 11 bits, for each (j,k,l,m).
for (size_t i = 0; i <= 0b1111; i++) {
block[i] = ROTL(block[i], 11);
}
// 8. Swap x[0j0lm] with x[0j1lm], for each (j,l,m).
for (size_t i = 0; i <= 0b1; i++) {
for (size_t j = 0; j <= 0b11; j++) {
size_t k = (i << 3) | (j);
SWAP(uint32_t, block[k], block[0b100 | k]);
}
}
// 9. Xor x[1jklm] into x[0jklm], for each (j,k,l,m).
for (size_t i = 0; i <= 0b1111; i++) {
block[i] ^= block[0b10000 | i];
}
// 10. Swap x[1jkl0] with x[1jkl1], for each (j,k,l).
for (size_t i = 0; i <= 0b111; i++) {
size_t j = i << 1;
SWAP(uint32_t, block[0b10000 | j], block[0b10001 | j]);
}
}
#undef SWAP
#undef ROTL
DgError DgCryptoCubeHasherInit(DgCryptoCubeHasher *this, uint32_t i, uint32_t r, uint32_t b, uint32_t f, uint32_t h) {
/**
* Initialise a streaming cube hasher and preform the first few rounds
*
* @param this The streaming hasher
* @param i The number of rounds to preform on the initial input
* @param r The number of rounds per message block (higher = more secure)
* @param b The number of bytes per message block (lower = more secure)
* @param f The number of finishing rounds
* @param h The output length of the final hash
* @return Error, if there is any
*/
// Check for constraints
if ((h % 8) != 0 || h > 512 || b > 128) {
return DG_ERROR_OUT_OF_RANGE;
}
// Zero out states
for (size_t i = 0; i < 32; i++) {
this->state[i] = 0;
}
// Save parameters
this->initial = i; // TODO: this one is not needed
this->roundsperblock = r;
this->bytesperblock = b;
this->finishing = f;
this->outputlen = h;
// Configure the initial state
this->state[0b00000] = h / 8;
this->state[0b00001] = b;
this->state[0b00010] = r;
// Preform the initial i rounds
for (size_t x = 0; x < i; x++) {
DgCryptoCubeHashRound(this->state);
}
return DG_ERROR_SUCCESS;
}
DgError DgCryptoCubeHasherNextBlock(DgCryptoCubeHasher *this, size_t length, const uint8_t *block) {
/**
* Process a message block no longer than this->bytesperblock, padding if
* that is needed.
*
* @note If block is NULL then it's assumed to be length count of zeros.
*
* @param this Streaming hasher instance
* @param length Length of input block
* @param block Input block data (can be NULL if no data is in the block)
* @return Error if any
*/
if (length > this->bytesperblock) {
return DG_ERROR_OUT_OF_RANGE;
}
// Create the array to xor
uint32_t to_xor[32] = { 0 };
// Copy the input block into the state
if (block) {
DgMemoryCopy(length, block, (void *) to_xor);
}
// Append padding if needed
if (length < this->bytesperblock) {
((uint8_t *)(to_xor))[length] = 0x80;
}
// XOR the blocks
for (size_t i = 0; i < 32; i++) {
this->state[i] ^= to_xor[i];
}
// Transform the blocks
for (size_t x = 0; x < this->roundsperblock; x++) {
DgCryptoCubeHashRound(this->state);
}
return DG_ERROR_SUCCESS;
}
DgError DgCryptoCubeHasherFinalise(DgCryptoCubeHasher *this, size_t * const length, uint8_t ** const hash) {
/**
* Finalise the hash and output it
*
* @warning If length and hash are not NULL, memory will be allocated which
* needs to be freed later.
*
* @param this Streaming hasher instance
* @param length Out parameter for the length (in bytes) of the hash
* @param hash Out parameter for the heap-allocated memory of the hash
* @return Error if any
*/
// Xor 1 (I believe (?) this helps prevents length extension attacks)
this->state[0b11111] ^= 1;
// Preform the final f rounds
for (size_t x = 0; x < this->finishing; x++) {
DgCryptoCubeHashRound(this->state);
}
// Output the hash (if possible)
if (length && hash) {
length[0] = this->outputlen / 8;
hash[0] = DgMemoryAllocate(length[0]);
if (!hash[0]) {
return DG_ERROR_ALLOCATION_FAILED;
}
DgMemoryCopy(length[0], this->state, hash[0]);
}
return DG_ERROR_SUCCESS;
}
DgError DgCryptoCubeHasher_Test(void) {
/**
* @see https://github.com/parabirb/cubehash/blob/main/test.js
*/
DgCryptoCubeHasher hasher;
size_t length;
uint8_t *hashdata;
DgError err;
err = DgCryptoCubeHasherInit(&hasher, 80, 8, 1, 80, 512);
if (err) {
DgLog(DG_LOG_ERROR, "Invalid parameters for cubehash!");
return DG_ERROR_FAILED;
}
DgCryptoCubeHasherNextBlock(&hasher, 0, NULL);
DgCryptoCubeHasherFinalise(&hasher, &length, &hashdata);
const char *hex = DgStringEncodeBase16(length, hashdata);
DgMemoryFree(hashdata);
DgLog(DG_LOG_INFO, "Cubehash of empty string: %s", hex);
DgMemoryFree((void *) hex);
return DG_ERROR_SUCCESS;
}
uint8_t *DgCryptoCubeHashBytes(const size_t length, const uint8_t *block, uint32_t i, uint32_t r, uint32_t b, uint32_t f, uint32_t h) {
/**
* Hash the message `block` that is `length` bytes long and return the hash
* data.
*
* @param length Length of the message
* @param block Message data
* @param i Number of initial rounds
* @param r Number of rounds per message block
* @param b Number of bytes per message block
* @param f Number of rounds in finalisation stage
* @param h Length of the output hash in bits
* @return Hash
*/
DgCryptoCubeHasher hasher;
// Initialise the cubehash hasher while given params
DgError error = DgCryptoCubeHasherInit(&hasher, i, r, b, f, h);
if (error) {
return NULL;
}
// Feed blocks while we can
size_t remaining = length, usable;
while (remaining) {
usable = (remaining < b) ? remaining : b;
DgCryptoCubeHasherNextBlock(&hasher, usable, &block[length - remaining]);
remaining -= usable;
}
// We need to append an extra empty block if the message aligns properly
// since DgCryptoCubeHasherNextBlock won't append a 1 bit followed by zeros
// for us in that case
if ((length % b) == 0) {
DgCryptoCubeHasherNextBlock(&hasher, 0, NULL);
}
// Finalise the hash
uint8_t *outhash;
size_t outlen;
error = DgCryptoCubeHasherFinalise(&hasher, &outlen, &outhash);
if (error) {
return NULL;
}
return outhash;
}
void DgCryptoCubeHashBytes_Test(void) {
// Don't question casting a string to const uint8_t *
uint8_t *hash = DgCryptoCubeHashBytes(5, (const uint8_t *) "Hello", 80, 8, 1, 80, 512);
if (!hash) {
DgLog(DG_LOG_ERROR, "Failed to get CubeHash-80+8/1+80-512 hash for string 'Hello'");
return;
}
char *enchash = DgStringEncodeBase16(512/8, hash);
DgLog(DG_LOG_INFO, "Cubehash of 'Hello': %s", enchash);
DgMemoryFree(enchash);
DgMemoryFree(hash);
}
uint8_t *DgCryptoCubeHash512(const size_t length, const uint8_t *input) {
/**
* Calculate the CubeHash80+8/1+80-512 (initial submission version) hash and
* return it.
*
* @param length Length of the data to hash
* @param input Data to hash
* @return Hash of the data or NULL if failed
*/
return DgCryptoCubeHashBytes(length, input, 80, 8, 1, 80, 512);
}
uint8_t *DgCryptoCubeHash384(const size_t length, const uint8_t *input) {
/**
* Calculate the CubeHash80+8/1+80-384 (initial submission version) hash and
* return it.
*
* @param length Length of the data to hash
* @param input Data to hash
* @return Hash of the data or NULL if failed
*/
return DgCryptoCubeHashBytes(length, input, 80, 8, 1, 80, 384);
}
uint8_t *DgCryptoCubeHash256(const size_t length, const uint8_t *input) {
/**
* Calculate the CubeHash80+8/1+80-256 (initial submission version) hash and
* return it.
*
* @param length Length of the data to hash
* @param input Data to hash
* @return Hash of the data or NULL if failed
*/
return DgCryptoCubeHashBytes(length, input, 80, 8, 1, 80, 256);
}
uint8_t *DgCryptoCubeHash160(const size_t length, const uint8_t *input) {
/**
* Calculate the CubeHash20+6/32+20-160 of a value. Not secure so it's not
* normally exposed in the API but should be good enough if you dont care
* about collisions.
*
* @param length Length of the data to hash
* @param input Data to hash
* @return Hash of the data or NULL if failed
*/
return DgCryptoCubeHashBytes(length, input, 20, 6, 32, 20, 160);
}