|
|
|
@ -1,10 +1,8 @@
@@ -1,10 +1,8 @@
|
|
|
|
|
/* |
|
|
|
|
* X17 algorithm built on cbuchner1's original X11 |
|
|
|
|
* |
|
|
|
|
/** |
|
|
|
|
* X17 algorithm (X15 + sha512 + haval256) |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
extern "C" |
|
|
|
|
{ |
|
|
|
|
extern "C" { |
|
|
|
|
#include "sph/sph_blake.h" |
|
|
|
|
#include "sph/sph_bmw.h" |
|
|
|
|
#include "sph/sph_groestl.h" |
|
|
|
@ -49,16 +47,18 @@ extern void x15_whirlpool_cpu_hash_64(int thr_id, uint32_t threads, uint32_t sta
@@ -49,16 +47,18 @@ extern void x15_whirlpool_cpu_hash_64(int thr_id, uint32_t threads, uint32_t sta
|
|
|
|
|
extern void x15_whirlpool_cpu_free(int thr_id); |
|
|
|
|
|
|
|
|
|
extern void x17_sha512_cpu_init(int thr_id, uint32_t threads); |
|
|
|
|
extern void x17_sha512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int order); |
|
|
|
|
extern void x17_sha512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order); |
|
|
|
|
|
|
|
|
|
extern void x17_haval256_cpu_init(int thr_id, uint32_t threads); |
|
|
|
|
extern void x17_haval256_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int order); |
|
|
|
|
extern void x17_haval256_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// X17 Hashfunktion |
|
|
|
|
// X17 CPU Hash (Validation) |
|
|
|
|
extern "C" void x17hash(void *output, const void *input) |
|
|
|
|
{ |
|
|
|
|
// blake1-bmw2-grs3-skein4-jh5-keccak6-luffa7-cubehash8-shavite9-simd10-echo11-hamsi12-fugue13-shabal14-whirlpool15-sha512-haval17 |
|
|
|
|
unsigned char _ALIGN(64) hash[128]; |
|
|
|
|
|
|
|
|
|
// x11 + hamsi12-fugue13-shabal14-whirlpool15-sha512-haval256 |
|
|
|
|
|
|
|
|
|
sph_blake512_context ctx_blake; |
|
|
|
|
sph_bmw512_context ctx_bmw; |
|
|
|
@ -78,8 +78,6 @@ extern "C" void x17hash(void *output, const void *input)
@@ -78,8 +78,6 @@ extern "C" void x17hash(void *output, const void *input)
|
|
|
|
|
sph_sha512_context ctx_sha512; |
|
|
|
|
sph_haval256_5_context ctx_haval; |
|
|
|
|
|
|
|
|
|
unsigned char hash[128]; // uint32_t hashA[16], hashB[16]; |
|
|
|
|
#define hashB hash+64 |
|
|
|
|
|
|
|
|
|
sph_blake512_init(&ctx_blake); |
|
|
|
|
sph_blake512(&ctx_blake, input, 80); |
|
|
|
@ -199,7 +197,7 @@ extern "C" int scanhash_x17(int thr_id, struct work* work, uint32_t max_nonce, u
@@ -199,7 +197,7 @@ extern "C" int scanhash_x17(int thr_id, struct work* work, uint32_t max_nonce, u
|
|
|
|
|
init[thr_id] = true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
uint32_t endiandata[20]; |
|
|
|
|
uint32_t _ALIGN(64) endiandata[20]; |
|
|
|
|
for (int k=0; k < 20; k++) |
|
|
|
|
be32enc(&endiandata[k], pdata[k]); |
|
|
|
|
|
|
|
|
@ -226,8 +224,8 @@ extern "C" int scanhash_x17(int thr_id, struct work* work, uint32_t max_nonce, u
@@ -226,8 +224,8 @@ extern "C" int scanhash_x17(int thr_id, struct work* work, uint32_t max_nonce, u
|
|
|
|
|
x13_fugue512_cpu_hash_64(thr_id, throughput, pdata[19], NULL, d_hash[thr_id], order++); |
|
|
|
|
x14_shabal512_cpu_hash_64(thr_id, throughput, pdata[19], NULL, d_hash[thr_id], order++); |
|
|
|
|
x15_whirlpool_cpu_hash_64(thr_id, throughput, pdata[19], NULL, d_hash[thr_id], order++); |
|
|
|
|
x17_sha512_cpu_hash_64(thr_id, throughput, pdata[19], d_hash[thr_id], order++); |
|
|
|
|
x17_haval256_cpu_hash_64(thr_id, throughput, pdata[19], d_hash[thr_id], order++); |
|
|
|
|
x17_sha512_cpu_hash_64(thr_id, throughput, pdata[19], NULL, d_hash[thr_id], order++); |
|
|
|
|
x17_haval256_cpu_hash_64(thr_id, throughput, pdata[19], NULL, d_hash[thr_id], order++); |
|
|
|
|
|
|
|
|
|
*hashes_done = pdata[19] - first_nonce + throughput; |
|
|
|
|
|
|
|
|
@ -235,7 +233,7 @@ extern "C" int scanhash_x17(int thr_id, struct work* work, uint32_t max_nonce, u
@@ -235,7 +233,7 @@ extern "C" int scanhash_x17(int thr_id, struct work* work, uint32_t max_nonce, u
|
|
|
|
|
if (foundNonce != UINT32_MAX) |
|
|
|
|
{ |
|
|
|
|
const uint32_t Htarg = ptarget[7]; |
|
|
|
|
uint32_t vhash64[8]; |
|
|
|
|
uint32_t _ALIGN(64) vhash64[8]; |
|
|
|
|
be32enc(&endiandata[19], foundNonce); |
|
|
|
|
x17hash(vhash64, endiandata); |
|
|
|
|
|
|
|
|
|