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.
48 lines
913 B
48 lines
913 B
#pragma once
|
|
#include "compiler.h"
|
|
#include "endian.h"
|
|
#include "ethash.h"
|
|
|
|
#define ENABLE_SSE 0
|
|
|
|
#if defined(_M_X64) && ENABLE_SSE
|
|
#include <smmintrin.h>
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// compile time settings
|
|
#define NODE_WORDS (64/4)
|
|
#define MIX_WORDS (ETHASH_MIX_BYTES/4)
|
|
#define MIX_NODES (MIX_WORDS / NODE_WORDS)
|
|
#include <stdint.h>
|
|
|
|
typedef union node {
|
|
uint8_t bytes[NODE_WORDS * 4];
|
|
uint32_t words[NODE_WORDS];
|
|
uint64_t double_words[NODE_WORDS / 2];
|
|
|
|
#if defined(_M_X64) && ENABLE_SSE
|
|
__m128i xmm[NODE_WORDS/4];
|
|
#endif
|
|
|
|
} node;
|
|
|
|
void ethash_calculate_dag_item(
|
|
node *const ret,
|
|
const unsigned node_index,
|
|
ethash_params const *params,
|
|
void const *cache
|
|
);
|
|
|
|
void ethash_quick_hash(
|
|
uint8_t return_hash[32],
|
|
const uint8_t header_hash[32],
|
|
const uint64_t nonce,
|
|
const uint8_t mix_hash[32]);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|