mirror of
https://github.com/kvazar-network/keva-stratum.git
synced 2025-01-15 09:30:00 +00:00
10 lines
258 B
C
10 lines
258 B
C
|
#include "crypto/hash-ops.h"
|
||
|
|
||
|
void cryptonight_hash(const char* input, char* output, uint32_t len) {
|
||
|
cn_slow_hash(input, len, output);
|
||
|
}
|
||
|
|
||
|
void cryptonight_fast_hash(const char* input, char* output, uint32_t len) {
|
||
|
cn_fast_hash(input, len, output);
|
||
|
}
|