mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
117 lines
3.0 KiB
C
117 lines
3.0 KiB
C
#include "lbry-gate.h"
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "sph_ripemd.h"
|
|
#include <openssl/sha.h>
|
|
|
|
void lbry_hash(void* output, const void* input)
|
|
{
|
|
SHA256_CTX ctx_sha256 __attribute__ ((aligned (64)));
|
|
SHA512_CTX ctx_sha512 __attribute__ ((aligned (64)));
|
|
sph_ripemd160_context ctx_ripemd __attribute__ ((aligned (64)));
|
|
uint32_t _ALIGN(64) hashA[16];
|
|
uint32_t _ALIGN(64) hashB[16];
|
|
uint32_t _ALIGN(64) hashC[16];
|
|
|
|
SHA256_Init( &ctx_sha256 );
|
|
SHA256_Update( &ctx_sha256, input, 112 );
|
|
SHA256_Final( (unsigned char*) hashA, &ctx_sha256 );
|
|
|
|
SHA256_Init( &ctx_sha256 );
|
|
SHA256_Update( &ctx_sha256, hashA, 32 );
|
|
SHA256_Final( (unsigned char*) hashA, &ctx_sha256 );
|
|
|
|
SHA512_Init( &ctx_sha512 );
|
|
SHA512_Update( &ctx_sha512, hashA, 32 );
|
|
SHA512_Final( (unsigned char*) hashA, &ctx_sha512 );
|
|
|
|
sph_ripemd160_init( &ctx_ripemd );
|
|
sph_ripemd160 ( &ctx_ripemd, hashA, 32 );
|
|
sph_ripemd160_close( &ctx_ripemd, hashB );
|
|
|
|
sph_ripemd160_init( &ctx_ripemd );
|
|
sph_ripemd160 ( &ctx_ripemd, hashA+8, 32 );
|
|
sph_ripemd160_close( &ctx_ripemd, hashC );
|
|
|
|
SHA256_Init( &ctx_sha256 );
|
|
SHA256_Update( &ctx_sha256, hashB, 20 );
|
|
SHA256_Update( &ctx_sha256, hashC, 20 );
|
|
SHA256_Final( (unsigned char*) hashA, &ctx_sha256 );
|
|
|
|
SHA256_Init( &ctx_sha256 );
|
|
SHA256_Update( &ctx_sha256, hashA, 32 );
|
|
SHA256_Final( (unsigned char*) hashA, &ctx_sha256 );
|
|
|
|
memcpy( output, hashA, 32 );
|
|
}
|
|
|
|
int scanhash_lbry( int thr_id, struct work *work, uint32_t max_nonce,
|
|
uint64_t *hashes_done)
|
|
{
|
|
uint32_t *pdata = work->data;
|
|
uint32_t *ptarget = work->target;
|
|
uint32_t n = pdata[27] - 1;
|
|
const uint32_t first_nonce = pdata[27];
|
|
const uint32_t Htarg = ptarget[7];
|
|
|
|
uint32_t hash64[8] __attribute__((aligned(64)));
|
|
uint32_t endiandata[32] __attribute__ ((aligned (64)));
|
|
|
|
uint64_t htmax[] = {
|
|
0,
|
|
0xF,
|
|
0xFF,
|
|
0xFFF,
|
|
0xFFFF,
|
|
0x10000000
|
|
};
|
|
uint32_t masks[] = {
|
|
0xFFFFFFFF,
|
|
0xFFFFFFF0,
|
|
0xFFFFFF00,
|
|
0xFFFFF000,
|
|
0xFFFF0000,
|
|
0
|
|
};
|
|
|
|
// we need bigendian data...
|
|
swab32_array( endiandata, pdata, 32 );
|
|
|
|
#ifdef DEBUG_ALGO
|
|
printf("[%d] Htarg=%X\n", thr_id, Htarg);
|
|
#endif
|
|
for (int m=0; m < sizeof(masks); m++) {
|
|
if (Htarg <= htmax[m]) {
|
|
uint32_t mask = masks[m];
|
|
do {
|
|
pdata[27] = ++n;
|
|
be32enc(&endiandata[27], n);
|
|
lbry_hash(hash64, &endiandata);
|
|
#ifndef DEBUG_ALGO
|
|
if ((!(hash64[7] & mask)) && fulltest(hash64, ptarget)) {
|
|
*hashes_done = n - first_nonce + 1;
|
|
return true;
|
|
}
|
|
#else
|
|
if (!(n % 0x1000) && !thr_id) printf(".");
|
|
if (!(hash64[7] & mask)) {
|
|
printf("[%d]",thr_id);
|
|
if (fulltest(hash64, ptarget)) {
|
|
*hashes_done = n - first_nonce + 1;
|
|
return true;
|
|
}
|
|
}
|
|
#endif
|
|
} while (n < max_nonce && !work_restart[thr_id].restart);
|
|
// see blake.c if else to understand the loop on htmax => mask
|
|
break;
|
|
}
|
|
}
|
|
|
|
*hashes_done = n - first_nonce + 1;
|
|
pdata[27] = n;
|
|
return 0;
|
|
}
|