-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp_blake3.c
193 lines (157 loc) · 4.42 KB
/
php_blake3.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
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "ext/standard/info.h"
#include "ext/hash/php_hash.h"
#include "blake3.h"
#include "php_blake3.h"
#define PHP_BLAKE3_NAME "BLAKE3"
#define PHP_BLAKE3_VERSION "0.1.0"
ZEND_BEGIN_ARG_INFO_EX(arginfo_void, 0, 0, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_blake3, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, outputSize)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, rawOutput)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_blake3_file, 0, 0, 1)
ZEND_ARG_INFO(0, filename)
ZEND_ARG_INFO(0, rawOutput)
ZEND_END_ARG_INFO()
zend_function_entry blake3_functions[] = {
PHP_FE(blake3, arginfo_blake3)
PHP_FE(blake3_file, arginfo_blake3_file)
{NULL, NULL, NULL}
};
PHP_MINIT_FUNCTION(blake3){
REGISTER_LONG_CONSTANT("BLAKE3_OUT_LEN",
BLAKE3_OUT_LEN, CONST_CS | CONST_PERSISTENT);
}
zend_module_entry blake3_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
PHP_BLAKE3_NAME,
blake3_functions,
PHP_MINIT(blake3),
NULL,
NULL,
NULL,
NULL,
#if ZEND_MODULE_API_NO >= 20010901
PHP_BLAKE3_VERSION,
#endif
STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_BLAKE3
ZEND_GET_MODULE(blake3)
#endif
PHP_FUNCTION(blake3)
{
#if ZEND_MODULE_API_NO >= 20151012
zend_long hashByteLength = BLAKE3_OUT_LEN;
size_t dataByteLength;
size_t keyLength = 0;
#else
long hashByteLength = BLAKE3_OUT_LEN;
int dataByteLength;
int keyLength = 0;
#endif
unsigned char *data;
unsigned char *key;
zend_bool rawOutput = 0;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|lsb", &data, &dataByteLength, &hashByteLength, &key, &keyLength, &rawOutput) == FAILURE) {
return;
}
zend_bool hasError = 0;
if (hashByteLength < 1) {
hasError = 1;
zend_error(E_ERROR, "BLAKE3 output length cannot be zero");
}
if (keyLength > 0 && keyLength != BLAKE3_KEY_LEN) {
hasError = 1;
zend_error(E_ERROR, "BLAKE3 key length MUST be 32 bytes");
}
if (hasError) {
RETURN_FALSE;
}
char* hashOutput = (unsigned char*) emalloc(hashByteLength);
int result = blake3(hashOutput, hashByteLength, data, dataByteLength, key, keyLength);
if (result != 0) {
zend_error(E_ERROR, "Error generating BLAKE3 hash");
efree(hashOutput);
RETURN_FALSE;
}
if (rawOutput) {
#if ZEND_MODULE_API_NO >= 20151012
RETVAL_STRINGL(hashOutput, hashByteLength);
#else
RETVAL_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
RETVAL_STRING(hex);
#else
RETVAL_STRING(hex,1);
#endif
efree(hex);
}
efree(hashOutput);
}
PHP_FUNCTION(blake3_file)
{
#if ZEND_MODULE_API_NO >= 20151012
zend_long hashByteLength = BLAKE3_OUT_LEN;
size_t dataByteLength;
#else
long hashByteLength = BLAKE3_OUT_LEN;
int dataByteLength;
#endif
char *data;
int rawOutput = 0;
php_stream *stream;
int n;
unsigned char buf[1024];
blake3_hasher hasher;
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);
blake3_hasher_init(&hasher);
while ((n = php_stream_read(stream, buf, sizeof(buf))) > 0) {
blake3_hasher_update(&hasher, (const uint8_t *)buf, n);
}
blake3_hasher_finalize(&hasher, hashOutput, hashByteLength);
php_stream_close(stream);
if (n<0) {
efree(hashOutput);
RETURN_FALSE;
}
if (rawOutput) {
#if ZEND_MODULE_API_NO >= 20151012
RETVAL_STRINGL(hashOutput, hashByteLength);
#else
RETVAL_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
RETVAL_STRING(hex);
#else
RETVAL_STRING(hex,1);
#endif
efree(hex);
}
efree(hashOutput);
}