forked from chuanwc/node-multi-hashing-1
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbinding.gyp
131 lines (131 loc) · 4.08 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
130
131
{
"targets": [
{
"target_name": "multihashing",
"sources": [
"multihashing.cc",
"allium.c",
"argon2d/argon2.c",
"argon2d/core.c",
"argon2d/encoding.c",
"argon2d/argon2-helper.c",
"argon2d/thread.c",
"argon2d/blake2b-argon.c",
"argon2d/hashargon.cpp",
"bcrypt.c",
"blake.c",
"blake/blake2b-ref.c",
"blake/blake2s-ref.c",
"blake/hashblake.c",
"boolberry.cc",
"c11.c",
"cpu23r.cpp",
"cryptonight.c",
"dcrypt.c",
"dedal.c",
"fresh.c",
"fugue.c",
"groestl.c",
"gltalgos.c",
"keccakc.c",
"hefty1.c",
"hex.c",
"honeycomb/facet_one.c",
"honeycomb/facet_two.c",
"honeycomb/facet_three.c",
"honeycomb/facet_four.c",
"honeycomb/facet_five.c",
"honeycomb/facet_six.c",
"honeycomb/facets_helper.c",
"honeycomb/honeycomb.c",
"SWIFFTX/SWIFFTX.c",
"hmq1725.c",
"keccak.c",
"lyra2.c",
"lyra2re.c",
"lyra2rev3.c",
"lyra2z.c",
"neoscrypt.c",
"nist5.c",
"phi.c",
"quark.c",
"qubit.c",
"s3.c",
"scryptjane.c",
"scryptn.c",
"shavite3.c",
"skein.c",
"skunkhash.c",
"Sponge.c",
"timetravel10.cpp",
"tribus.c",
"sha1.c",
"sha3/sph_gost.c",
"sha3/sph_haval.c",
"sha3/sph_hefty1.c",
"sha3/sph_fugue.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_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/tiger.cpp",
"sha3/panama.c",
"sha3/lane.c",
"sha3/hamsi.c",
"sha3/sha2.c",
"sha3/sph_sha2big.c",
"whirlpoolx.c",
"xevan.c",
"x11.c",
"x12.c",
"x11ghost.c",
"x13.c",
"x14.c",
"x15.c",
"x16r.c",
"x16s.cpp",
"x17.c",
"x21s.cpp",
"x22i.cpp",
"x25x.cpp",
"zr5.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",
"yescrypt/sha256_Y.c",
"yescrypt/yescrypt-best.c",
"yescrypt/yescryptcommon.c",
"yescrypt/yescrypt-r8.c",
"yescrypt/yescrypt-r16v2.c",
"yescrypt/yescrypt-r24.c",
"yescrypt/yescrypt-r32.c",
"yespower/yespower-sha256.c",
"yespower/yespower-opt.c",
"yespower/yespower.c",
],
"include_dirs": [
"crypto",
"<!(node -e \"require('nan')\")"
],
"cflags_cc": [
"-std=c++11"
],
}
]
}