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
|
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "sha3.h"
static void run_shake128_xof(const uint8_t *msg, const size_t msg_len, const size_t out_len) {
// init xof
sha3_xof_t xof;
shake128_xof_init(&xof);
// absorb
if (!shake128_xof_absorb(&xof, msg, msg_len)) {
fprintf(stderr, "Error: shake128_xof_absorb() failed\n");
exit(-1);
}
// squeeze
uint8_t buf[64];
for (size_t i = 0; i < out_len; i += sizeof(buf)) {
const size_t len = (out_len - i < sizeof(buf)) ? out_len - i : sizeof(buf);
shake128_xof_squeeze(&xof, buf, len);
// print result
for (size_t j = 0; j < len; j++) {
printf("%02x", buf[j]);
}
}
fputs("\n", stdout);
}
static void run_shake256_xof(const uint8_t * const msg, const size_t msg_len, const size_t out_len) {
// init xof
sha3_xof_t xof;
shake256_xof_init(&xof);
// absorb
if (!shake256_xof_absorb(&xof, msg, msg_len)) {
fprintf(stderr, "Error: shake256_xof_absorb() failed\n");
exit(-1);
}
// squeeze
uint8_t buf[64];
for (size_t i = 0; i < out_len; i += sizeof(buf)) {
const size_t len = (out_len - i < sizeof(buf)) ? out_len - i : sizeof(buf);
shake256_xof_squeeze(&xof, buf, len);
// print result
for (size_t j = 0; j < len; j++) {
printf("%02x", buf[j]);
}
}
fputs("\n", stdout);
}
// available functions
static const struct {
const char *name;
const size_t size;
void (*hash_func)(const uint8_t *, size_t, uint8_t *);
void (*xof_func)(const uint8_t *, size_t, size_t);
} fns[] = {{
.name = "sha3-224",
.size = 28,
.hash_func = sha3_224,
}, {
.name = "sha3-256",
.size = 32,
.hash_func = sha3_256,
}, {
.name = "sha3-384",
.size = 48,
.hash_func = sha3_384,
}, {
.name = "sha3-512",
.size = 64,
.hash_func = sha3_512,
}, {
.name = "shake128",
.size = 16,
.hash_func = shake128,
}, {
.name = "shake256",
.size = 32,
.hash_func = shake256,
}, {
.name = "shake128-xof",
.size = 16,
.xof_func = run_shake128_xof,
}, {
.name = "shake256-xof",
.size = 32,
.xof_func = run_shake256_xof,
}};
#define USAGE "Usage: %s <algo> <data> [xof-size]\n" \
"\n" \
"Algorithms:\n" \
"- sha3-224\n" \
"- sha3-256\n" \
"- sha3-384\n" \
"- sha3-512\n" \
"- shake128\n" \
"- shake256\n" \
"- shake128-xof (XOF)\n" \
"- shake256-xof (XOF)\n" \
"\n" \
"Example:\n" \
" %s sha3-256 \"asdf\"\n" \
" dd2781f4c51bccdbe23e4d398b8a82261f585c278dbb4b84989fea70e76723a9\n"
int main(int argc, char *argv[]) {
if (argc < 3) {
const char *app = (argc > 0) ? argv[0] : "sha3";
fprintf(stderr, USAGE, app, app);
return -1;
}
const uint8_t * const msg = (uint8_t*) argv[2];
const size_t len = strlen(argv[2]);
for (size_t i = 0; i < sizeof(fns)/sizeof(fns[0]); i++) {
if (strncmp(argv[1], fns[i].name, strlen(fns[i].name) + 1)) {
continue;
}
if (fns[i].xof_func) {
// get output size
const size_t out_size = (argc == 4) ? (size_t) atoi(argv[3]) : fns[i].size;
fns[i].xof_func(msg, len, out_size);
} else {
// hash into buf
uint8_t buf[64];
fns[i].hash_func(msg, len, buf);
// print result
for (size_t j = 0; j < fns[i].size; j++) {
printf("%02x", buf[j]);
}
fputs("\n", stdout);
}
// exit with success
return 0;
}
fprintf(stderr, "Unknown algorithm: %s\n", argv[1]);
return -1;
}
|