mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
198 lines
5.3 KiB
C
198 lines
5.3 KiB
C
#include "x13sm3-gate.h"
|
|
|
|
#if !defined(X13BCD_8WAY) && !defined(X13VCD_4WAY)
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "algo/blake/sph_blake.h"
|
|
#include "algo/bmw/sph_bmw.h"
|
|
#include "algo/jh/sph_jh.h"
|
|
#include "algo/keccak/sph_keccak.h"
|
|
#include "algo/sm3/sph_sm3.h"
|
|
#include "algo/skein/sph_skein.h"
|
|
#include "algo/shavite/sph_shavite.h"
|
|
#include "algo/hamsi/sph_hamsi.h"
|
|
#include "algo/cubehash/cubehash_sse2.h"
|
|
#include "algo/simd/nist.h"
|
|
|
|
#if defined(__AES__)
|
|
#include "algo/echo/aes_ni/hash_api.h"
|
|
#include "algo/groestl/aes_ni/hash-groestl.h"
|
|
#include "algo/fugue/fugue-aesni.h"
|
|
#else
|
|
#include "algo/groestl/sph_groestl.h"
|
|
#include "algo/echo/sph_echo.h"
|
|
#include "algo/fugue/sph_fugue.h"
|
|
#endif
|
|
|
|
typedef struct {
|
|
sph_blake512_context blake;
|
|
sph_bmw512_context bmw;
|
|
#if defined(__AES__)
|
|
hashState_echo echo;
|
|
hashState_groestl groestl;
|
|
hashState_fugue fugue;
|
|
#else
|
|
sph_groestl512_context groestl;
|
|
sph_echo512_context echo;
|
|
sph_fugue512_context fugue;
|
|
#endif
|
|
sph_jh512_context jh;
|
|
sph_keccak512_context keccak;
|
|
sph_skein512_context skein;
|
|
cubehashParam cube;
|
|
sph_shavite512_context shavite;
|
|
hashState_sd simd;
|
|
sph_hamsi512_context hamsi;
|
|
sm3_ctx_t sm3;
|
|
} x13bcd_ctx_holder;
|
|
|
|
x13bcd_ctx_holder x13bcd_ctx;
|
|
|
|
void init_x13bcd_ctx()
|
|
{
|
|
sph_blake512_init( &x13bcd_ctx.blake );
|
|
sph_bmw512_init( &x13bcd_ctx.bmw );
|
|
#if defined(__AES__)
|
|
init_groestl( &x13bcd_ctx.groestl, 64 );
|
|
init_echo( &x13bcd_ctx.echo, 512 );
|
|
fugue512_Init( &x13bcd_ctx.fugue, 512 );
|
|
#else
|
|
sph_groestl512_init( &x13bcd_ctx.groestl );
|
|
sph_echo512_init( &x13bcd_ctx.echo );
|
|
sph_fugue512_init( &x13bcd_ctx.fugue );
|
|
#endif
|
|
sph_skein512_init( &x13bcd_ctx.skein );
|
|
sph_jh512_init( &x13bcd_ctx.jh );
|
|
sph_keccak512_init( &x13bcd_ctx.keccak );
|
|
cubehashInit( &x13bcd_ctx.cube,512,16,32 );
|
|
sph_shavite512_init( &x13bcd_ctx.shavite );
|
|
init_sd( &x13bcd_ctx.simd,512 );
|
|
sm3_init( &x13bcd_ctx.sm3 );
|
|
sph_hamsi512_init( &x13bcd_ctx.hamsi );
|
|
};
|
|
|
|
void x13bcd_hash(void *output, const void *input)
|
|
{
|
|
unsigned char hash[64] __attribute__((aligned(64)));
|
|
x13bcd_ctx_holder ctx;
|
|
memcpy( &ctx, &x13bcd_ctx, sizeof(x13bcd_ctx) );
|
|
|
|
sph_blake512( &ctx.blake, input, 80 );
|
|
sph_blake512_close( &ctx.blake, hash );
|
|
|
|
sph_bmw512( &ctx.bmw, (const void*) hash, 64 );
|
|
sph_bmw512_close( &ctx.bmw, hash );
|
|
|
|
#if defined(__AES__)
|
|
init_groestl( &ctx.groestl, 64 );
|
|
update_and_final_groestl( &ctx.groestl, (char*)hash,
|
|
(const char*)hash, 512 );
|
|
#else
|
|
sph_groestl512_init( &ctx.groestl );
|
|
sph_groestl512( &ctx.groestl, hash, 64 );
|
|
sph_groestl512_close( &ctx.groestl, hash );
|
|
#endif
|
|
|
|
sph_skein512( &ctx.skein, (const void*) hash, 64 );
|
|
sph_skein512_close( &ctx.skein, hash );
|
|
|
|
sph_jh512( &ctx.jh, (const void*) hash, 64 );
|
|
sph_jh512_close( &ctx.jh, hash );
|
|
|
|
sph_keccak512( &ctx.keccak, (const void*) hash, 64 );
|
|
sph_keccak512_close( &ctx.keccak, hash );
|
|
|
|
uint32_t sm3_hash[32] __attribute__ ((aligned (32)));
|
|
memset(sm3_hash, 0, sizeof sm3_hash);
|
|
|
|
sph_sm3(&ctx.sm3, hash, 64);
|
|
sph_sm3_close(&ctx.sm3, sm3_hash);
|
|
|
|
cubehashUpdateDigest( &ctx.cube, (byte*) hash,
|
|
(const byte*)sm3_hash, 64 );
|
|
|
|
|
|
sph_shavite512( &ctx.shavite, hash, 64);
|
|
sph_shavite512_close( &ctx.shavite, hash);
|
|
|
|
update_final_sd( &ctx.simd, (BitSequence *)hash,
|
|
(const BitSequence *)hash, 512 );
|
|
|
|
#if defined(__AES__)
|
|
update_final_echo ( &ctx.echo, (BitSequence *)hash,
|
|
(const BitSequence *)hash, 512 );
|
|
#else
|
|
sph_echo512( &ctx.echo, hash, 64 );
|
|
sph_echo512_close( &ctx.echo, hash );
|
|
#endif
|
|
|
|
sph_hamsi512( &ctx.hamsi, hash, 64 );
|
|
sph_hamsi512_close( &ctx.hamsi, hash );
|
|
|
|
#if defined(__AES__)
|
|
fugue512_Update( &ctx.fugue, hash, 512 );
|
|
fugue512_Final( &ctx.fugue, hash );
|
|
#else
|
|
sph_fugue512( &ctx.fugue, hash, 64 );
|
|
sph_fugue512_close( &ctx.fugue, hash );
|
|
#endif
|
|
|
|
memcpy( output, hash, 32 );
|
|
}
|
|
|
|
int scanhash_x13bcd( struct work *work, uint32_t max_nonce,
|
|
uint64_t *hashes_done, struct thr_info *mythr)
|
|
{
|
|
uint32_t endiandata[20] __attribute__((aligned(64)));
|
|
uint32_t hash64[8] __attribute__((aligned(64)));
|
|
uint32_t *pdata = work->data;
|
|
uint32_t *ptarget = work->target;
|
|
uint32_t n = pdata[19] - 1;
|
|
const uint32_t first_nonce = pdata[19];
|
|
int thr_id = mythr->id; // thr_id arg is deprecated
|
|
const uint32_t Htarg = ptarget[7];
|
|
|
|
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, 20 );
|
|
|
|
for (int m=0; m < 6; m++) {
|
|
if (Htarg <= htmax[m]) {
|
|
uint32_t mask = masks[m];
|
|
do {
|
|
pdata[19] = ++n;
|
|
be32enc(&endiandata[19], n);
|
|
x13bcd_hash(hash64, endiandata);
|
|
if ((!(hash64[7] & mask)) && fulltest(hash64, ptarget))
|
|
submit_solution( work, hash64, mythr );
|
|
} while (n < max_nonce && !work_restart[thr_id].restart);
|
|
break;
|
|
}
|
|
}
|
|
|
|
*hashes_done = n - first_nonce + 1;
|
|
pdata[19] = n;
|
|
return 0;
|
|
}
|
|
|
|
#endif
|