1 Star 0 Fork 0

zhq1/node-multi-hashing-1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
boolberry.cc 501 Bytes
一键复制 编辑 原始数据 按行查看 历史
foxer666 提交于 2017-10-05 22:09 . Init
#include "boolberry.h"
#include "crypto/cryptonote_core/cryptonote_format_utils.h"
#include <iostream>
void boolberry_hash(const char* input, uint32_t input_len, const char* scratchpad, uint64_t spad_length, char* output, uint64_t height) {
crypto::hash* spad = (crypto::hash*) scratchpad;
cryptonote::get_blob_longhash_bb(std::string(input, input_len), *((crypto::hash*)output), height, [&](uint64_t index) -> crypto::hash& {
return spad[index%(spad_length / HASH_SIZE)];
});
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/zhq1_admin/node-multi-hashing-1.git
git@gitee.com:zhq1_admin/node-multi-hashing-1.git
zhq1_admin
node-multi-hashing-1
node-multi-hashing-1
master

搜索帮助