forked from vagabondan/node-multi-hashing
-
Notifications
You must be signed in to change notification settings - Fork 3
/
binding.gyp
129 lines (129 loc) · 3.74 KB
/
binding.gyp
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"targets": [
{
"target_name": "multihashing",
"sources": [
"sha3/sph_haval.c",
"sha3/sph_ripemd.c",
"sha3/sph_sha2.c",
"sha3/sph_sha2big.c",
"sha3/sph_tiger.c",
"multihashing.cc",
"scryptjane.c",
"scryptn.c",
"keccak.c",
"skein.c",
"x11.c",
"quark.c",
"bcrypt.c",
"groestl.c",
"allium.c",
"blake.c",
"gost.c",
"fugue.c",
"qubit.c",
"hefty1.c",
"shavite3.c",
"cryptonight.c",
"x13.c",
"boolberry.cc",
"nist5.c",
"whirlpoolx.c",
"Lyra2RE.c",
"zr5.c",
"Lyra2.c",
"Sponge.c",
"Lyra2REV2.c",
"Lyra2Z.c",
"blake2s.c",
"sha3/sph_blake2s.c",
"neoscrypt.c",
"sha1.c",
"x15.c",
"fresh.c",
"phi1612.c",
"sph/sph_skein.h",
"sph/sph_jh.h",
"sph/sph_cubehash.h",
"sph/sph_fungue.h",
"sph/sph_gost.h",
"sph/sph_echo.h",
"hsr14.c",
"sm3.c",
"tribus.c",
"yescrypt/sha256_Y.c",
"yescrypt/yescrypt-best.c",
"yescrypt/yescryptcommon.c",
"sha3/sph_hefty1.c",
"sha3/aes_helper.c",
"sha3/sph_blake.c",
"sha3/sph_bmw.c",
"sha3/sph_cubehash.c",
"sha3/sph_echo.c",
"sha3/sph_groestl.c",
"sha3/sph_gost.c",
"sha3/sph_jh.c",
"sha3/sph_keccak.c",
"sha3/sph_luffa.c",
"sha3/sph_shavite.c",
"sha3/sph_simd.c",
"sha3/sph_skein.c",
"sha3/sph_whirlpool.c",
"sha3/sph_shabal.c",
"sha3/hamsi.c",
"magimath.c",
"m7.c",
"crypto/oaes_lib.c",
"crypto/c_keccak.c",
"crypto/c_groestl.c",
"crypto/c_blake256.c",
"crypto/c_jh.c",
"crypto/c_skein.c",
"crypto/hash.c",
"crypto/aesb.c",
"crypto/wild_keccak.cpp",
"sha3/sph_fugue.c",
"lyra2z16m330.c",
"skunk.c",
"lyra2z330.c",
"xevan.c"
],
'conditions': [
['OS=="linux"',
{
'link_settings': {
'libraries': [
'-lgmp'
]
}
}
],
['OS=="mac"',
{
'link_settings': {
'libraries': [
'-lgmp'
]
}
}
],
['OS=="win"',
{
'link_settings': {
'libraries': [
'-lgmp.lib'
],
}
}
]
],
"include_dirs": [
"crypto",
"<!(node -e \"require('nan')\")"
],
"cflags_cc": [
"-std=c++0x"
],
}
]
}