pool/stratum/algos/hex.h
opensourcerulez f3b70fdbcc Add hex algo... (#285)
made by XDNA Core developers
2018-08-07 22:39:29 +02:00

20 lines
397 B
C

// Copyright (c) 2018 The XDNA Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef HEXHASH_H
#define HEXHASH_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
void hex_hash(const char* input, char* output, uint32_t len);
#ifdef __cplusplus
}
#endif
#endif // HEXHASH_H