forked from chuanwc/node-multi-hashing-1
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgltalgos.h
More file actions
29 lines (21 loc) · 772 Bytes
/
gltalgos.h
File metadata and controls
29 lines (21 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef GLTALGOS_H
#define GLTALGOS_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
// hardfork 1 added algos
void pawelhash(const char* input, char* output, uint32_t len);
void astralhash(const char* input, char* output, uint32_t len);
void jeonghash(const char* input, char* output, uint32_t len);
void padihash(const char* input, char* output, uint32_t len);
void globalhash(const char* input, char* output, uint32_t len);
// hardfork 2 added algos
void arctichash(const char* input, char* output, uint32_t len);
void deserthash(const char* input, char* output, uint32_t len);
void cryptoandcoffee_hash(const char* input, char* output, uint32_t len);
void rickhash(const char* input, char* output, uint32_t len);
#ifdef __cplusplus
}
#endif
#endif