@@ -247,7 +247,7 @@ Handle<Value> groestl(const Arguments& args) {
247
247
}
248
248
249
249
250
- Handle<Value> groestl_myriad (const Arguments& args) {
250
+ Handle<Value> groestlmyriad (const Arguments& args) {
251
251
HandleScope scope;
252
252
253
253
if (args.Length () < 1 )
@@ -263,7 +263,7 @@ Handle<Value> groestl_myriad(const Arguments& args) {
263
263
264
264
uint32_t input_len = Buffer::Length (target);
265
265
266
- groestl_myriad_hash (input, output, input_len);
266
+ groestlmyriad_hash (input, output, input_len);
267
267
268
268
Buffer* buff = Buffer::New (output, 32 );
269
269
return scope.Close (buff->handle_ );
@@ -394,7 +394,7 @@ void init(Handle<Object> exports) {
394
394
exports->Set (String::NewSymbol (" bcrypt" ), FunctionTemplate::New (bcrypt)->GetFunction ());
395
395
exports->Set (String::NewSymbol (" skein" ), FunctionTemplate::New (skein)->GetFunction ());
396
396
exports->Set (String::NewSymbol (" groestl" ), FunctionTemplate::New (groestl)->GetFunction ());
397
- exports->Set (String::NewSymbol (" groestl_myriad " ), FunctionTemplate::New (groestl_myriad )->GetFunction ());
397
+ exports->Set (String::NewSymbol (" groestlmyriad " ), FunctionTemplate::New (groestlmyriad )->GetFunction ());
398
398
exports->Set (String::NewSymbol (" blake" ), FunctionTemplate::New (blake)->GetFunction ());
399
399
exports->Set (String::NewSymbol (" fugue" ), FunctionTemplate::New (fugue)->GetFunction ());
400
400
exports->Set (String::NewSymbol (" qubit" ), FunctionTemplate::New (qubit)->GetFunction ());
0 commit comments