#include #include #include #include #include #include #include "cryptonote_core/cryptonote_basic.h" #include "cryptonote_core/cryptonote_format_utils.h" #include "cryptonote_protocol/blobdatatype.h" #include "crypto/crypto.h" #include "crypto/hash.h" #include "common/base58.h" using namespace node; using namespace v8; using namespace cryptonote; Handle except(const char* msg) { return ThrowException(Exception::Error(String::New(msg))); } blobdata uint64be_to_blob(uint64_t num) { blobdata res = " "; res[0] = num >> 56 & 0xff; res[1] = num >> 48 & 0xff; res[2] = num >> 40 & 0xff; res[3] = num >> 32 & 0xff; res[4] = num >> 24 & 0xff; res[5] = num >> 16 & 0xff; res[6] = num >> 8 & 0xff; res[7] = num & 0xff; return res; } Handle convert_blob(const Arguments& args) { HandleScope scope; if (args.Length() < 1) return except("You must provide one argument."); Local target = args[0]->ToObject(); if (!Buffer::HasInstance(target)) return except("Argument should be a buffer object."); blobdata input = std::string(Buffer::Data(target), Buffer::Length(target)); blobdata output = ""; //convert block b = AUTO_VAL_INIT(b); if (!parse_and_validate_block_from_blob(input, b)) { return except("Failed to parse block"); } output = get_block_hashing_blob(b); Buffer* buff = Buffer::New(output.data(), output.size()); return scope.Close(buff->handle_); } Handle convert_blob_bb(const Arguments& args) { HandleScope scope; if (args.Length() < 1) return except("You must provide one argument."); Local target = args[0]->ToObject(); if (!Buffer::HasInstance(target)) return except("Argument should be a buffer object."); blobdata input = std::string(Buffer::Data(target), Buffer::Length(target)); blobdata output = ""; //convert bb_block b = AUTO_VAL_INIT(b); if (!parse_and_validate_block_from_blob(input, b)) { return except("Failed to parse block"); } output = get_block_hashing_blob(b); Buffer* buff = Buffer::New(output.data(), output.size()); return scope.Close(buff->handle_); } Handle address_decode(const Arguments& args) { HandleScope scope; if (args.Length() < 1) return except("You must provide one argument."); Local target = args[0]->ToObject(); if (!Buffer::HasInstance(target)) return except("Argument should be a buffer object."); blobdata input = std::string(Buffer::Data(target), Buffer::Length(target)); blobdata output = ""; uint64_t prefix; tools::base58::decode_addr(input, prefix, output); if(output.length()) output = uint64be_to_blob(prefix) + output; Buffer* buff = Buffer::New(output.data(), output.size()); return scope.Close(buff->handle_); } void init(Handle exports) { exports->Set(String::NewSymbol("convert_blob"), FunctionTemplate::New(convert_blob)->GetFunction()); exports->Set(String::NewSymbol("convert_blob_bb"), FunctionTemplate::New(convert_blob_bb)->GetFunction()); exports->Set(String::NewSymbol("address_decode"), FunctionTemplate::New(address_decode)->GetFunction()); } NODE_MODULE(cryptonote, init)