forked from alexis78/ccminer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
algos.h
113 lines (104 loc) · 1.61 KB
/
algos.h
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#ifndef ALGOS_H
#define ALGOS_H
#include <string.h>
#include "compat.h"
enum sha_algos {
ALGO_BLAKE,
ALGO_DECRED,
ALGO_VCASH,
ALGO_BLAKECOIN,
ALGO_BLAKE2S,
// ALGO_WHIRLPOOLX,
ALGO_KECCAK,
ALGO_HSR,
ALGO_LYRA2,
ALGO_LYRA2v2,
ALGO_SKEIN,
ALGO_SKEIN2,
ALGO_NIST5,
ALGO_QUARK,
ALGO_QUBIT,
ALGO_WHIRLPOOL,
ALGO_X11,
ALGO_X11EVO,
ALGO_C11,
ALGO_SIB,
ALGO_X13,
ALGO_X14,
ALGO_X15,
ALGO_X17,
ALGO_LBRY,
ALGO_NEOSCRYPT,
ALGO_SIA,
ALGO_MYR_GR,
ALGO_VELTOR,
// ALGO_YESCRYPT,
ALGO_AUTO,
ALGO_COUNT
};
extern volatile enum sha_algos opt_algo;
static const char *algo_names[] = {
"blake",
"decred",
"vcash",
"blakecoin",
"blake2s",
// "whirlpoolx",
"keccak",
"hsr",
"lyra2",
"lyra2v2",
"skein",
"skein2",
"nist5",
"quark",
"qubit",
"whirlpool",
"x11",
"x11evo",
"c11",
"sib",
"x13",
"x14",
"x15",
"x17",
"lbry",
"neoscrypt",
"sia",
"myr-gr",
"veltor",
// "yescrypt",
"auto", /* reserved for multi algo */
""
};
// string to int/enum
static inline int algo_to_int(char* arg)
{
int i;
for (i = 0; i < ALGO_COUNT; i++) {
if (algo_names[i] && !strcasecmp(arg, algo_names[i])) {
return i;
}
}
if (i == ALGO_COUNT) {
// some aliases...
if (!strcasecmp("all", arg))
i = ALGO_AUTO;
else if (!strcasecmp("flax", arg))
i = ALGO_C11;
else if (!strcasecmp("x13sm3", arg))
i = ALGO_HSR;
else if (!strcasecmp("lyra2re", arg))
i = ALGO_LYRA2;
else if (!strcasecmp("lyra2rev2", arg))
i = ALGO_LYRA2v2;
else if (!strcasecmp("thorsriddle", arg))
i = ALGO_VELTOR;
else if (!strcasecmp("whirl", arg))
i = ALGO_WHIRLPOOL;
else
i = -1;
}
return i;
}
#endif