-
Notifications
You must be signed in to change notification settings - Fork 15
/
php_blake2.c
247 lines (202 loc) · 5.78 KB
/
php_blake2.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
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "ext/standard/info.h"
#include "ext/hash/php_hash.h"
#include "blake2.h"
#include "php_blake2.h"
#define PHP_BLAKE2_NAME "BLAKE2"
#define PHP_BLAKE2_VERSION "0.1.0"
zend_function_entry blake2_functions[] = {
PHP_FE(blake2, NULL)
PHP_FALIAS(blake2b, blake2, NULL)
PHP_FE(blake2s, NULL)
PHP_FE(blake2_file, NULL)
PHP_FALIAS(b2sum, blake2_file, NULL)
{NULL, NULL, NULL}
};
zend_module_entry blake2_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
PHP_BLAKE2_NAME,
blake2_functions,
NULL,
NULL,
NULL,
NULL,
NULL,
#if ZEND_MODULE_API_NO >= 20010901
PHP_BLAKE2_VERSION,
#endif
STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_BLAKE2
ZEND_GET_MODULE(blake2)
#endif
PHP_FUNCTION(blake2)
{
#if ZEND_MODULE_API_NO >= 20151012
zend_long hashByteLength = BLAKE2B_OUTBYTES;
size_t dataByteLength;
size_t keyLength = 0;
#else
long hashByteLength = BLAKE2B_OUTBYTES;
int dataByteLength;
int keyLength = 0;
#endif
unsigned char *data;
unsigned char *key;
zend_bool rawOutput = 0;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|lsb", &data, &dataByteLength, &hashByteLength, &key, &keyLength, &rawOutput) == FAILURE) {
return;
}
zend_bool hasError = 0;
if (hashByteLength < 1) {
hasError = 1;
zend_error(E_WARNING, "BLAKE2 output length is too short");
} else if (hashByteLength > BLAKE2B_OUTBYTES) {
hasError = 1;
zend_error(E_WARNING, "BLAKE2 output length is too long");
}
if (keyLength > BLAKE2B_KEYBYTES) {
hasError = 1;
zend_error(E_WARNING, "BLAKE2 key length is too long");
}
if (hasError) {
RETURN_FALSE;
}
char* hashOutput = (char*) emalloc(hashByteLength);
int result = blake2b(hashOutput, hashByteLength, data, dataByteLength, key, keyLength);
if (result != 0) {
zend_error(E_WARNING, "Error generating BLAKE2 hash");
RETURN_FALSE;
}
if (rawOutput) {
#if ZEND_MODULE_API_NO >= 20151012
RETURN_STRINGL(hashOutput, hashByteLength);
#else
RETURN_STRINGL(hashOutput, hashByteLength, 1);
#endif
} else {
char* hex = (char*) emalloc(hashByteLength * 2 + 1);
php_hash_bin2hex(hex, (unsigned char *) hashOutput, hashByteLength);
hex[hashByteLength * 2] = '\0';
#if ZEND_MODULE_API_NO >= 20151012
RETURN_STRING(hex);
#else
RETURN_STRING(hex, 1);
#endif
efree(hex);
}
efree(hashOutput);
}
PHP_FUNCTION(blake2s)
{
#if ZEND_MODULE_API_NO >= 20151012
zend_long hashByteLength = BLAKE2S_OUTBYTES;
size_t dataByteLength;
size_t keyLength = 0;
#else
long hashByteLength = BLAKE2S_OUTBYTES;
int dataByteLength;
int keyLength = 0;
#endif
unsigned char *data;
unsigned char *key;
zend_bool rawOutput = 0;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|lsb", &data, &dataByteLength, &hashByteLength, &key, &keyLength, &rawOutput) == FAILURE) {
return;
}
zend_bool hasError = 0;
if (hashByteLength < 1) {
hasError = 1;
zend_error(E_WARNING, "BLAKE2s output length is too short");
} else if (hashByteLength > BLAKE2S_OUTBYTES) {
hasError = 1;
zend_error(E_WARNING, "BLAKE2s output length is too long");
}
if (keyLength > BLAKE2S_KEYBYTES) {
hasError = 1;
zend_error(E_WARNING, "BLAKE2s key length is too long");
}
if (hasError) {
RETURN_FALSE;
}
char* hashOutput = (char*) emalloc(hashByteLength);
int result = blake2s(hashOutput, hashByteLength, data, dataByteLength, key, keyLength);
if (result != 0) {
zend_error(E_WARNING, "Error generating BLAKE2s hash");
RETURN_FALSE;
}
if (rawOutput) {
#if ZEND_MODULE_API_NO >= 20151012
RETURN_STRINGL(hashOutput, hashByteLength);
#else
RETURN_STRINGL(hashOutput, hashByteLength, 1);
#endif
} else {
char* hex = (char*) emalloc(hashByteLength * 2 + 1);
php_hash_bin2hex(hex, (unsigned char *) hashOutput, hashByteLength);
hex[hashByteLength * 2] = '\0';
#if ZEND_MODULE_API_NO >= 20151012
RETURN_STRING(hex);
#else
RETURN_STRING(hex, 1);
#endif
efree(hex);
}
efree(hashOutput);
}
PHP_FUNCTION(blake2_file)
{
#if ZEND_MODULE_API_NO >= 20151012
zend_long hashByteLength = BLAKE2B_OUTBYTES;
size_t dataByteLength;
#else
long hashByteLength = BLAKE2B_OUTBYTES;
int dataByteLength;
#endif
char *data;
int rawOutput = 0;
php_stream *stream;
int n;
unsigned char buf[1024];
blake2b_state S[1];
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|b", &data, &dataByteLength, &rawOutput) == FAILURE) {
return;
}
stream = php_stream_open_wrapper(data, "rb", REPORT_ERRORS, NULL);
if (!stream) {
RETURN_FALSE;
}
char* hashOutput = (char*) emalloc(hashByteLength);
blake2b_init(S, hashByteLength);
while ((n = php_stream_read(stream, buf, sizeof(buf))) > 0) {
blake2b_update(S, (const uint8_t *)buf, n);
}
blake2b_final(S, hashOutput, hashByteLength);
php_stream_close(stream);
if (n<0) {
RETURN_FALSE;
}
if (rawOutput) {
#if ZEND_MODULE_API_NO >= 20151012
RETURN_STRINGL(hashOutput, hashByteLength);
#else
RETURN_STRINGL(hashOutput, hashByteLength, 1);
#endif
} else {
char* hex = (char*) emalloc(hashByteLength * 2 + 1);
php_hash_bin2hex(hex, (unsigned char *) hashOutput, hashByteLength);
hex[hashByteLength * 2] = '\0';
#if ZEND_MODULE_API_NO >= 20151012
RETURN_STRING(hex);
#else
RETURN_STRING(hex, 1);
#endif
efree(hex);
}
efree(hashOutput);
}