ref10: tweak things
[mkp224o.git] / Makefile.in
blob7c8b5dbe3c45342d3c0b9dfcd1e52d461c618cff
2 CC= @CC@
3 CSTD= @CSTD@
4 ifeq ($(OS),Windows_NT)
5 CSTD+= -Wno-pedantic-ms-format
6 endif
7 CFLAGS= $(CSTD) @CFLAGS@ @CPPFLAGS@ -DED25519_@ED25519IMPL@ @MYDEFS@
8 ASFLAGS=
9 LDFLAGS= @NOPIE@ @LDFLAGS@
10 MV= mv
12 ED25519_DEFS= -DED25519_ref10 -DED25519_amd64_51_30k -DED25519_amd64_64_24k -DED25519_donna
13 ED25519_ref10= $(patsubst %.c,%.c.o,$(wildcard ed25519/ref10/*.c))
14 ED25519_amd64_51_30k= \
15 $(patsubst %.c,%.c.o,$(wildcard ed25519/amd64-51-30k/*.c)) \
16 $(patsubst %.s,%.s.o,$(wildcard ed25519/amd64-51-30k/*.s))
17 ED25519_amd64_64_24k= \
18 $(patsubst %.c,%.c.o,$(wildcard ed25519/amd64-64-24k/*.c)) \
19 $(patsubst %.s,%.s.o,$(wildcard ed25519/amd64-64-24k/*.s))
20 ED25519_donna=
21 ED25519OBJ= $(ED25519_@ED25519IMPL@)
23 MAINOBJ= \
24 main.c.o \
25 yaml.c.o \
26 vec.c.o \
27 cpucount.c.o \
28 base32_to.c.o \
29 base32_from.c.o \
30 base64_to.c.o \
31 base64_from.c.o \
32 ioutil.c.o \
33 $(ED25519OBJ) \
34 keccak.c.o
36 TEST_BASE64OBJ= \
37 test_base64.c.o \
38 base64_to.c.o \
39 base64_from.c.o
41 TEST_BASE32OBJ= \
42 test_base32.c.o \
43 base32_to.c.o \
44 base32_from.c.o
46 TEST_BASE16OBJ= \
47 test_base16.c.o \
48 base16_to.c.o \
49 base16_from.c.o
51 TEST_ED25519OBJ= \
52 test_ed25519.c.o \
53 base16_to.c.o \
54 base16_from.c.o \
55 $(ED25519OBJ)
57 ALLO= $(sort \
58 $(MAINOBJ) \
59 $(TEST_BASE64OBJ) \
60 $(TEST_BASE32OBJ) \
61 $(TEST_BASE16OBJ) \
62 $(TEST_ED25519OBJ) \
63 $(ED25519_ref10) \
64 $(ED25519_amd64_51_30k) \
65 $(ED25519_amd64_64_24k))
66 ALLC= $(patsubst %.c.o,%.c,$(filter %.c.o %.c,$(ALLO)))
67 CLEANO= $(filter %.o,$(ALLO))
69 MAINLIB= -lpthread -lsodium @MAINLIB@
70 TEST_ED25519LIB= -lsodium
72 EXE= mkp224o test_base64 test_base32 test_base16 test_ed25519
74 default: mkp224o
76 all: $(EXE)
78 mkp224o: $(MAINOBJ)
79 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ $(MAINLIB) && $(MV) $@.tmp $@
81 test_base64: $(TEST_BASE64OBJ)
82 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
84 test_base32: $(TEST_BASE32OBJ)
85 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
87 test_base16: $(TEST_BASE16OBJ)
88 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
90 test_ed25519: $(TEST_ED25519OBJ)
91 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ $(TEST_ED25519LIB) && $(MV) $@.tmp $@
93 %.c.o: %.c
94 $(CC) $(CFLAGS) -c -o $@.tmp $< && $(MV) $@.tmp $@
96 %.s.o: %.s
97 $(CC) $(ASFLAGS) -c -o $@.tmp $< && $(MV) $@.tmp $@
99 clean:
100 $(RM) $(CLEANO)
101 $(RM) $(EXE)
103 distclean:
104 $(RM) $(CLEANO)
105 $(RM) $(EXE)
106 $(RM) -r autom4te.cache
107 $(RM) configure config.status config.log
108 $(RM) Makefile
110 depend:
111 makedepend -Y -fMakefile.in -o.c.o -- $(CSTD) $(ED25519_DEFS) -- $(ALLC)
113 # DO NOT DELETE THIS LINE
115 base16_from.c.o: types.h base16.h
116 base16_to.c.o: types.h base16.h
117 base32_from.c.o: types.h base32.h
118 base32_to.c.o: types.h base32.h
119 base64_from.c.o: types.h base64.h
120 base64_to.c.o: types.h base64.h
121 cpucount.c.o: cpucount.h
122 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/crypto_sign.h
123 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/ed25519.h
124 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
125 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
126 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/randombytes.h
127 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/ge25519.h
128 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/fe25519.h
129 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/sc25519.h
130 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/hram.h
131 ed25519/amd64-51-30k/fe25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
132 ed25519/amd64-51-30k/fe25519_getparity.c.o: ed25519/amd64-51-30k/fe25519.h
133 ed25519/amd64-51-30k/fe25519_invert.c.o: ed25519/amd64-51-30k/fe25519.h
134 ed25519/amd64-51-30k/fe25519_iseq.c.o: ed25519/amd64-51-30k/fe25519.h
135 ed25519/amd64-51-30k/fe25519_iszero.c.o: ed25519/amd64-51-30k/fe25519.h
136 ed25519/amd64-51-30k/fe25519_neg.c.o: ed25519/amd64-51-30k/fe25519.h
137 ed25519/amd64-51-30k/fe25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
138 ed25519/amd64-51-30k/fe25519_pow2523.c.o: ed25519/amd64-51-30k/fe25519.h
139 ed25519/amd64-51-30k/fe25519_setint.c.o: ed25519/amd64-51-30k/fe25519.h
140 ed25519/amd64-51-30k/fe25519_sub.c.o: ed25519/amd64-51-30k/fe25519.h
141 ed25519/amd64-51-30k/fe25519_unpack.c.o: ed25519/amd64-51-30k/fe25519.h
142 ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/ge25519.h
143 ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
144 ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/sc25519.h
145 ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/ge25519.h
146 ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/fe25519.h
147 ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/sc25519.h
148 ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/ge25519.h
149 ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/fe25519.h
150 ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/sc25519.h
151 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
152 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
153 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
154 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519_base_slide_multiples.data
155 ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/fe25519.h
156 ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/ge25519.h
157 ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/sc25519.h
158 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
159 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
160 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
161 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/index_heap.h
162 ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
163 ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/sc25519.h
164 ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/ge25519.h
165 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/fe25519.h
166 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/sc25519.h
167 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519.h
168 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519_base_niels_smalltables.data
169 ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/fe25519.h
170 ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/ge25519.h
171 ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/sc25519.h
172 ed25519/amd64-51-30k/hram.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
173 ed25519/amd64-51-30k/hram.c.o: ed25519/amd64-51-30k/hram.h
174 ed25519/amd64-51-30k/index_heap.c.o: ed25519/amd64-51-30k/sc25519.h
175 ed25519/amd64-51-30k/index_heap.c.o: ed25519/amd64-51-30k/index_heap.h
176 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/crypto_sign.h
177 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/ed25519.h
178 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
179 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/randombytes.h
180 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/ge25519.h
181 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/fe25519.h
182 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/sc25519.h
183 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_sign.h
184 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/ed25519.h
185 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
186 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
187 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/ge25519.h
188 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/fe25519.h
189 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/sc25519.h
190 ed25519/amd64-51-30k/sc25519_from32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
191 ed25519/amd64-51-30k/sc25519_from64bytes.c.o: ed25519/amd64-51-30k/sc25519.h
192 ed25519/amd64-51-30k/sc25519_from_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
193 ed25519/amd64-51-30k/sc25519_iszero.c.o: ed25519/amd64-51-30k/sc25519.h
194 ed25519/amd64-51-30k/sc25519_mul.c.o: ed25519/amd64-51-30k/sc25519.h
195 ed25519/amd64-51-30k/sc25519_mul_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
196 ed25519/amd64-51-30k/sc25519_slide.c.o: ed25519/amd64-51-30k/sc25519.h
197 ed25519/amd64-51-30k/sc25519_to32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
198 ed25519/amd64-51-30k/sc25519_window4.c.o: ed25519/amd64-51-30k/sc25519.h
199 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/crypto_sign.h
200 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/ed25519.h
201 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
202 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/ge25519.h
203 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/fe25519.h
204 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/sc25519.h
205 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/crypto_sign.h
206 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/ed25519.h
207 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
208 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
209 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/randombytes.h
210 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/ge25519.h
211 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/fe25519.h
212 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/sc25519.h
213 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/hram.h
214 ed25519/amd64-64-24k/fe25519_getparity.c.o: ed25519/amd64-51-30k/fe25519.h
215 ed25519/amd64-64-24k/fe25519_invert.c.o: ed25519/amd64-51-30k/fe25519.h
216 ed25519/amd64-64-24k/fe25519_iseq.c.o: ed25519/amd64-51-30k/fe25519.h
217 ed25519/amd64-64-24k/fe25519_iszero.c.o: ed25519/amd64-51-30k/fe25519.h
218 ed25519/amd64-64-24k/fe25519_neg.c.o: ed25519/amd64-51-30k/fe25519.h
219 ed25519/amd64-64-24k/fe25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
220 ed25519/amd64-64-24k/fe25519_pow2523.c.o: ed25519/amd64-51-30k/fe25519.h
221 ed25519/amd64-64-24k/fe25519_setint.c.o: ed25519/amd64-51-30k/fe25519.h
222 ed25519/amd64-64-24k/fe25519_unpack.c.o: ed25519/amd64-51-30k/fe25519.h
223 ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-51-30k/ge25519.h
224 ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
225 ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-51-30k/sc25519.h
226 ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-51-30k/ge25519.h
227 ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-51-30k/fe25519.h
228 ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-51-30k/sc25519.h
229 ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-51-30k/ge25519.h
230 ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-51-30k/fe25519.h
231 ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-51-30k/sc25519.h
232 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
233 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
234 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
235 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519_base_slide_multiples.data
236 ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/fe25519.h
237 ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/ge25519.h
238 ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/sc25519.h
239 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
240 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
241 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
242 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/index_heap.h
243 ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
244 ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-51-30k/sc25519.h
245 ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-51-30k/ge25519.h
246 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/fe25519.h
247 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/sc25519.h
248 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519.h
249 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-64-24k/ge25519_base_niels.data
250 ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/fe25519.h
251 ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/ge25519.h
252 ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/sc25519.h
253 ed25519/amd64-64-24k/hram.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
254 ed25519/amd64-64-24k/hram.c.o: ed25519/amd64-51-30k/hram.h
255 ed25519/amd64-64-24k/index_heap.c.o: ed25519/amd64-51-30k/sc25519.h
256 ed25519/amd64-64-24k/index_heap.c.o: ed25519/amd64-51-30k/index_heap.h
257 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/crypto_sign.h
258 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/ed25519.h
259 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
260 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/randombytes.h
261 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/ge25519.h
262 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/fe25519.h
263 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/sc25519.h
264 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/crypto_sign.h
265 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/ed25519.h
266 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
267 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
268 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/ge25519.h
269 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/fe25519.h
270 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/sc25519.h
271 ed25519/amd64-64-24k/sc25519_from32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
272 ed25519/amd64-64-24k/sc25519_from64bytes.c.o: ed25519/amd64-51-30k/sc25519.h
273 ed25519/amd64-64-24k/sc25519_from_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
274 ed25519/amd64-64-24k/sc25519_iszero.c.o: ed25519/amd64-51-30k/sc25519.h
275 ed25519/amd64-64-24k/sc25519_mul.c.o: ed25519/amd64-51-30k/sc25519.h
276 ed25519/amd64-64-24k/sc25519_mul_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
277 ed25519/amd64-64-24k/sc25519_slide.c.o: ed25519/amd64-51-30k/sc25519.h
278 ed25519/amd64-64-24k/sc25519_to32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
279 ed25519/amd64-64-24k/sc25519_window4.c.o: ed25519/amd64-51-30k/sc25519.h
280 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/crypto_sign.h
281 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/ed25519.h
282 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
283 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/ge25519.h
284 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/fe25519.h
285 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/sc25519.h
286 ed25519/ref10/fe_0.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
287 ed25519/ref10/fe_1.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
288 ed25519/ref10/fe_add.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
289 ed25519/ref10/fe_cmov.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
290 ed25519/ref10/fe_copy.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
291 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/fe.h
292 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_int32.h
293 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_int64.h
294 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_uint64.h
295 ed25519/ref10/fe_invert.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
296 ed25519/ref10/fe_invert.c.o: ed25519/ref10/pow225521.h
297 ed25519/ref10/fe_isnegative.c.o: ed25519/ref10/fe.h
298 ed25519/ref10/fe_isnegative.c.o: ed25519/ref10/crypto_int32.h
299 ed25519/ref10/fe_isnonzero.c.o: ed25519/ref10/fe.h
300 ed25519/ref10/fe_isnonzero.c.o: ed25519/ref10/crypto_int32.h
301 ed25519/ref10/fe_isnonzero.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
302 ed25519/ref10/fe_mul.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
303 ed25519/ref10/fe_mul.c.o: ed25519/ref10/crypto_int64.h
304 ed25519/ref10/fe_neg.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
305 ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/fe.h
306 ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/crypto_int32.h
307 ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/pow22523.h
308 ed25519/ref10/fe_sq.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
309 ed25519/ref10/fe_sq.c.o: ed25519/ref10/crypto_int64.h
310 ed25519/ref10/fe_sq2.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
311 ed25519/ref10/fe_sq2.c.o: ed25519/ref10/crypto_int64.h
312 ed25519/ref10/fe_sub.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
313 ed25519/ref10/fe_tobytes.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
314 ed25519/ref10/ge_add.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
315 ed25519/ref10/ge_add.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/ge_add.h
316 ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
317 ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/crypto_int32.h
318 ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/base2.h
319 ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
320 ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/crypto_int32.h
321 ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/d.h ed25519/ref10/sqrtm1.h
322 ed25519/ref10/ge_madd.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
323 ed25519/ref10/ge_madd.c.o: ed25519/ref10/crypto_int32.h
324 ed25519/ref10/ge_madd.c.o: ed25519/ref10/ge_madd.h
325 ed25519/ref10/ge_msub.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
326 ed25519/ref10/ge_msub.c.o: ed25519/ref10/crypto_int32.h
327 ed25519/ref10/ge_msub.c.o: ed25519/ref10/ge_msub.h
328 ed25519/ref10/ge_p1p1_to_p2.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
329 ed25519/ref10/ge_p1p1_to_p2.c.o: ed25519/ref10/crypto_int32.h
330 ed25519/ref10/ge_p1p1_to_p3.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
331 ed25519/ref10/ge_p1p1_to_p3.c.o: ed25519/ref10/crypto_int32.h
332 ed25519/ref10/ge_p2_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
333 ed25519/ref10/ge_p2_0.c.o: ed25519/ref10/crypto_int32.h
334 ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
335 ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/crypto_int32.h
336 ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/ge_p2_dbl.h
337 ed25519/ref10/ge_p3_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
338 ed25519/ref10/ge_p3_0.c.o: ed25519/ref10/crypto_int32.h
339 ed25519/ref10/ge_p3_dbl.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
340 ed25519/ref10/ge_p3_dbl.c.o: ed25519/ref10/crypto_int32.h
341 ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
342 ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/crypto_int32.h
343 ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/d2.h
344 ed25519/ref10/ge_p3_to_p2.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
345 ed25519/ref10/ge_p3_to_p2.c.o: ed25519/ref10/crypto_int32.h
346 ed25519/ref10/ge_p3_tobytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
347 ed25519/ref10/ge_p3_tobytes.c.o: ed25519/ref10/crypto_int32.h
348 ed25519/ref10/ge_precomp_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
349 ed25519/ref10/ge_precomp_0.c.o: ed25519/ref10/crypto_int32.h
350 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
351 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/crypto_int32.h
352 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/crypto_uint32.h
353 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/base.h
354 ed25519/ref10/ge_sub.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
355 ed25519/ref10/ge_sub.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/ge_sub.h
356 ed25519/ref10/ge_tobytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
357 ed25519/ref10/ge_tobytes.c.o: ed25519/ref10/crypto_int32.h
358 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/randombytes.h
359 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/crypto_sign.h
360 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/ed25519.h
361 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
362 ed25519/ref10/keypair.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
363 ed25519/ref10/keypair.c.o: ed25519/ref10/crypto_int32.h
364 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/crypto_sign.h
365 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/ed25519.h
366 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
367 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
368 ed25519/ref10/open.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
369 ed25519/ref10/open.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/sc.h
370 ed25519/ref10/sc_muladd.c.o: ed25519/ref10/sc.h ed25519/ref10/crypto_int64.h
371 ed25519/ref10/sc_muladd.c.o: ed25519/ref10/crypto_uint32.h
372 ed25519/ref10/sc_muladd.c.o: ed25519/ref10/crypto_uint64.h
373 ed25519/ref10/sc_reduce.c.o: ed25519/ref10/sc.h ed25519/ref10/crypto_int64.h
374 ed25519/ref10/sc_reduce.c.o: ed25519/ref10/crypto_uint32.h
375 ed25519/ref10/sc_reduce.c.o: ed25519/ref10/crypto_uint64.h
376 ed25519/ref10/sign.c.o: ed25519/amd64-51-30k/crypto_sign.h
377 ed25519/ref10/sign.c.o: ed25519/amd64-51-30k/ed25519.h
378 ed25519/ref10/sign.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
379 ed25519/ref10/sign.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
380 ed25519/ref10/sign.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/sc.h
381 ioutil.c.o: types.h ioutil.h
382 keccak.c.o: types.h keccak.h
383 main.c.o: types.h likely.h vec.h base32.h cpucount.h keccak.h
384 main.c.o: ed25519/ed25519.h ed25519/ref10/ed25519.h ed25519/ref10/ge.h
385 main.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
386 main.c.o: ed25519/amd64-51-30k/ed25519.h ed25519/amd64-51-30k/ge25519.h
387 main.c.o: ed25519/amd64-51-30k/fe25519.h ed25519/amd64-51-30k/sc25519.h
388 main.c.o: ed25519/amd64-64-24k/ed25519.h ed25519/amd64-64-24k/ge25519.h
389 main.c.o: ed25519/ed25519-donna/ed25519-donna.h
390 main.c.o: ed25519/ed25519-donna/ed25519-donna-portable.h
391 main.c.o: ed25519/ed25519-donna/ed25519-donna-portable-identify.h
392 main.c.o: ed25519/ed25519-donna/curve25519-donna-64bit.h
393 main.c.o: ed25519/ed25519-donna/curve25519-donna-helpers.h
394 main.c.o: ed25519/ed25519-donna/modm-donna-64bit.h
395 main.c.o: ed25519/ed25519-donna/ed25519-donna-basepoint-table.h
396 main.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-tables.h
397 main.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86.h
398 main.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h ioutil.h common.h
399 main.c.o: yaml.h filters.h
400 test_base16.c.o: types.h base16.h
401 test_base32.c.o: types.h base32.h
402 test_base64.c.o: types.h base64.h
403 test_ed25519.c.o: types.h base16.h ed25519/ed25519.h ed25519/ref10/ed25519.h
404 test_ed25519.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
405 test_ed25519.c.o: ed25519/ref10/crypto_int32.h ed25519/amd64-51-30k/ed25519.h
406 test_ed25519.c.o: ed25519/amd64-51-30k/ge25519.h
407 test_ed25519.c.o: ed25519/amd64-51-30k/fe25519.h
408 test_ed25519.c.o: ed25519/amd64-51-30k/sc25519.h
409 test_ed25519.c.o: ed25519/amd64-64-24k/ed25519.h
410 test_ed25519.c.o: ed25519/amd64-64-24k/ge25519.h
411 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna.h
412 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-portable.h
413 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-portable-identify.h
414 test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-64bit.h
415 test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-helpers.h
416 test_ed25519.c.o: ed25519/ed25519-donna/modm-donna-64bit.h
417 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-basepoint-table.h
418 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-tables.h
419 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86.h
420 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h
421 vec.c.o: vec.h
422 yaml.c.o: types.h yaml.h ioutil.h base32.h base64.h common.h