forked from dashdot/python-x11_hash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
memehash.c
69 lines (56 loc) · 1.77 KB
/
memehash.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
#include "memehash.h"
#include <stdint.h>
#include <string.h>
#include "sha3/sph_blake.h"
#include "sha3/sph_cubehash.h"
#include "sha3/sph_shavite.h"
#include "sha3/sph_simd.h"
#include "sha3/sph_echo.h"
#include "sha3/sph_sha2.h"
void meme_hash(const char* input, char* output, uint32_t len)
{
sph_blake512_context ctx_blake;
sph_cubehash512_context ctx_cubehash;
sph_shavite512_context ctx_shavite;
sph_simd512_context ctx_simd;
sph_echo512_context ctx_echo;
sph_sha256_context ctx_sha;
uint32_t hash[16];
uint32_t hashA[16];
// 1. BLAKE-512
sph_blake512_init(&ctx_blake);
sph_blake512(&ctx_blake, input, len);
sph_blake512_close(&ctx_blake, hash);
// 2. SIMD-512
sph_simd512_init(&ctx_simd);
sph_simd512(&ctx_simd, hash, 64);
sph_simd512_close(&ctx_simd, hash);
// 3. ECHO-512
sph_echo512_init(&ctx_echo);
sph_echo512(&ctx_echo, hash, 64);
sph_echo512_close(&ctx_echo, hash);
// 4. CubeHash-512
sph_cubehash512_init(&ctx_cubehash);
sph_cubehash512(&ctx_cubehash, hash, 64);
sph_cubehash512_close(&ctx_cubehash, hash);
// 5. SHAvite-512
sph_shavite512_init(&ctx_shavite);
sph_shavite512(&ctx_shavite, hash, 64);
sph_shavite512_close(&ctx_shavite, hash);
// 6. 三輪 SHA-256
sph_sha256_init(&ctx_sha);
sph_sha256(&ctx_sha, hash, 64);
sph_sha256_close(&ctx_sha, hashA);
// Clear 32~63 bytes
for (int i = 8; i < 16; i++)
hashA[i] = 0;
sph_sha256_init(&ctx_sha);
sph_sha256(&ctx_sha, hashA, 64);
sph_sha256_close(&ctx_sha, hashA);
for (int i = 8; i < 16; i++)
hashA[i] = 0;
sph_sha256_init(&ctx_sha);
sph_sha256(&ctx_sha, hashA, 64);
sph_sha256_close(&ctx_sha, hash);
memcpy(output, hash, 32);
}