Kevacoin stratum server for solo-mining
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#include <stdint.h>
|
|
|
|
#include <string>
|
|
|
|
#include "cryptonote_basic/cryptonote_format_utils.h"
|
|
|
|
#include "common/base58.h"
|
|
|
|
|
|
|
|
using namespace cryptonote;
|
|
|
|
|
|
|
|
extern "C" uint32_t convert_blob(const char *blob, size_t len, char *out) {
|
|
|
|
std::string input = std::string(blob, len);
|
|
|
|
std::string output = "";
|
|
|
|
|
|
|
|
block b = AUTO_VAL_INIT(b);
|
|
|
|
if (!parse_and_validate_block_from_blob(input, b)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
output = get_block_hashing_blob(b);
|
|
|
|
output.copy(out, output.length(), 0);
|
|
|
|
return output.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" bool validate_address(const char *addr, size_t len) {
|
|
|
|
std::string input = std::string(addr, len);
|
|
|
|
std::string output = "";
|
|
|
|
uint64_t prefix;
|
|
|
|
return tools::base58::decode_addr(addr, prefix, output);
|
|
|
|
}
|