2017-09-26 20:35:56 -03:00
|
|
|
|
|
|
|
CC= @CC@
|
2017-10-21 21:40:23 -03:00
|
|
|
CSTD= @CSTD@
|
2022-05-05 11:36:36 -04:00
|
|
|
CFLAGS= $(CSTD) @CFLAGS@ @CPPFLAGS@ -DED25519_@ED25519IMPL@ @PIE@ @MYDEFS@ -DVERSION='"@VERSION@"'
|
2022-05-05 09:22:34 -04:00
|
|
|
ASFLAGS= @PIE@
|
|
|
|
LDFLAGS= @LDFLAGS@
|
2017-09-26 20:35:56 -03:00
|
|
|
MV= mv
|
|
|
|
|
2017-10-02 11:11:23 -03:00
|
|
|
ED25519_DEFS= -DED25519_ref10 -DED25519_amd64_51_30k -DED25519_amd64_64_24k -DED25519_donna
|
2019-03-16 21:23:10 -03:00
|
|
|
ED25519_ref10= $(patsubst @SRCDIR@/%.c,%.c.o,$(wildcard @SRCDIR@/ed25519/ref10/*.c))
|
2017-09-26 20:35:56 -03:00
|
|
|
ED25519_amd64_51_30k= \
|
2019-03-16 21:23:10 -03:00
|
|
|
$(patsubst @SRCDIR@/%.c,%.c.o,$(wildcard @SRCDIR@/ed25519/amd64-51-30k/*.c)) \
|
2022-05-05 09:22:34 -04:00
|
|
|
$(patsubst @SRCDIR@/%.S,%.S.o,$(wildcard @SRCDIR@/ed25519/amd64-51-30k/*.S))
|
2017-09-26 20:35:56 -03:00
|
|
|
ED25519_amd64_64_24k= \
|
2019-03-16 21:23:10 -03:00
|
|
|
$(patsubst @SRCDIR@/%.c,%.c.o,$(wildcard @SRCDIR@/ed25519/amd64-64-24k/*.c)) \
|
2022-05-05 09:22:34 -04:00
|
|
|
$(patsubst @SRCDIR@/%.S,%.S.o,$(wildcard @SRCDIR@/ed25519/amd64-64-24k/*.S))
|
2017-10-02 11:11:23 -03:00
|
|
|
ED25519_donna=
|
2019-12-22 17:01:26 -03:00
|
|
|
ED25519_OBJ= $(ED25519_@ED25519IMPL@)
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
MAIN_OBJ= \
|
2017-09-26 20:35:56 -03:00
|
|
|
main.c.o \
|
2019-03-16 16:57:29 -03:00
|
|
|
worker.c.o \
|
2018-07-09 12:38:41 -04:00
|
|
|
yaml.c.o \
|
2017-10-09 17:00:02 -03:00
|
|
|
vec.c.o \
|
2017-10-05 21:14:33 -03:00
|
|
|
cpucount.c.o \
|
2017-09-26 20:35:56 -03:00
|
|
|
base32_to.c.o \
|
|
|
|
base32_from.c.o \
|
2018-07-05 20:20:51 -04:00
|
|
|
base64_to.c.o \
|
|
|
|
base64_from.c.o \
|
2017-10-23 01:12:04 -03:00
|
|
|
ioutil.c.o \
|
2019-12-22 17:01:26 -03:00
|
|
|
$(ED25519_OBJ) \
|
2017-09-26 20:35:56 -03:00
|
|
|
keccak.c.o
|
|
|
|
|
2020-01-14 14:15:44 -03:00
|
|
|
UTIL_CALCEST_OBJ= \
|
|
|
|
calcest.c.o
|
2019-12-22 17:01:26 -03:00
|
|
|
|
|
|
|
TEST_BASE64_OBJ= \
|
2018-07-05 20:20:51 -04:00
|
|
|
test_base64.c.o \
|
|
|
|
base64_to.c.o \
|
|
|
|
base64_from.c.o
|
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
TEST_BASE32_OBJ= \
|
2017-09-26 20:35:56 -03:00
|
|
|
test_base32.c.o \
|
|
|
|
base32_to.c.o \
|
|
|
|
base32_from.c.o
|
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
TEST_BASE16_OBJ= \
|
2017-09-26 20:35:56 -03:00
|
|
|
test_base16.c.o \
|
|
|
|
base16_to.c.o \
|
|
|
|
base16_from.c.o
|
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
TEST_ED25519_OBJ= \
|
2017-09-26 20:35:56 -03:00
|
|
|
test_ed25519.c.o \
|
|
|
|
base16_to.c.o \
|
|
|
|
base16_from.c.o \
|
2019-12-22 17:01:26 -03:00
|
|
|
$(ED25519_OBJ)
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
ALL_O= $(sort \
|
|
|
|
$(MAIN_OBJ) \
|
2021-11-02 21:20:43 -03:00
|
|
|
$(UTIL_CALCEST_OBJ) \
|
2019-12-22 17:01:26 -03:00
|
|
|
$(TEST_BASE64_OBJ) \
|
|
|
|
$(TEST_BASE32_OBJ) \
|
|
|
|
$(TEST_BASE16_OBJ) \
|
|
|
|
$(TEST_ED25519_OBJ) \
|
2017-09-26 20:44:04 -03:00
|
|
|
$(ED25519_ref10) \
|
|
|
|
$(ED25519_amd64_51_30k) \
|
|
|
|
$(ED25519_amd64_64_24k))
|
2019-03-16 21:23:10 -03:00
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
ALL_C= $(patsubst %.c.o,%.c,$(filter %.c.o %.c,$(ALL_O)))
|
|
|
|
CLEAN_O= $(filter %.o,$(ALL_O))
|
|
|
|
|
|
|
|
MAIN_LIB= -lpthread -lsodium @MAINLIB@
|
2020-01-14 14:15:44 -03:00
|
|
|
UTIL_CALCEST_LIB= -lm
|
2019-12-22 17:01:26 -03:00
|
|
|
TEST_ED25519_LIB= -lsodium
|
|
|
|
|
|
|
|
MAIN_TGT= mkp224o
|
2020-01-14 14:15:44 -03:00
|
|
|
UTIL_TGT= calcest
|
2019-12-22 17:01:26 -03:00
|
|
|
TEST_TGT= test_base64 test_base32 test_base16 test_ed25519
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
MAIN_EXE= $(patsubst %,%@EXEEXT@,$(MAIN_TGT))
|
|
|
|
UTIL_EXE= $(patsubst %,%@EXEEXT@,$(UTIL_TGT))
|
|
|
|
TEST_EXE= $(patsubst %,%@EXEEXT@,$(TEST_TGT))
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
ALL_EXE= $(MAIN_EXE) $(UTIL_EXE) $(TEST_EXE)
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2020-05-23 12:41:51 -04:00
|
|
|
.PHONY: default all main util test clean distclean depend
|
2019-03-16 21:23:10 -03:00
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
default: $(MAIN_EXE)
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
all: $(ALL_EXE)
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2020-05-23 12:41:51 -04:00
|
|
|
main: $(MAIN_EXE)
|
|
|
|
|
|
|
|
util: $(UTIL_EXE)
|
|
|
|
|
|
|
|
test: $(TEST_EXE)
|
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
mkp224o@EXEEXT@: $(MAIN_OBJ)
|
|
|
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ $(MAIN_LIB) && $(MV) $@.tmp $@
|
|
|
|
|
2020-01-14 14:15:44 -03:00
|
|
|
calcest@EXEEXT@: $(UTIL_CALCEST_OBJ)
|
|
|
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ $(UTIL_CALCEST_LIB) && $(MV) $@.tmp $@
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
test_base64@EXEEXT@: $(TEST_BASE64_OBJ)
|
2018-07-05 20:20:51 -04:00
|
|
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
|
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
test_base32@EXEEXT@: $(TEST_BASE32_OBJ)
|
2017-10-05 22:22:01 -03:00
|
|
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
test_base16@EXEEXT@: $(TEST_BASE16_OBJ)
|
2017-10-05 22:22:01 -03:00
|
|
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2019-12-22 17:01:26 -03:00
|
|
|
test_ed25519@EXEEXT@: $(TEST_ED25519_OBJ)
|
|
|
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ $(TEST_ED25519_LIB) && $(MV) $@.tmp $@
|
2017-09-26 20:35:56 -03:00
|
|
|
|
|
|
|
clean:
|
2019-12-22 17:01:26 -03:00
|
|
|
$(RM) $(CLEAN_O)
|
|
|
|
$(RM) $(ALL_EXE)
|
2017-09-26 20:35:56 -03:00
|
|
|
|
2019-03-16 22:03:09 -03:00
|
|
|
distclean: clean
|
2017-10-21 21:40:23 -03:00
|
|
|
$(RM) -r autom4te.cache
|
|
|
|
$(RM) configure config.status config.log
|
2019-12-22 17:28:12 -03:00
|
|
|
$(RM) GNUmakefile
|
2017-10-21 21:40:23 -03:00
|
|
|
|
2017-09-26 20:35:56 -03:00
|
|
|
depend:
|
2020-11-21 08:34:25 -03:00
|
|
|
# makedepend from imake
|
2019-12-22 17:28:12 -03:00
|
|
|
cd "@SRCDIR@" && makedepend -Y -fGNUmakefile.in -o.c.o -- $(CSTD) $(ED25519_DEFS) -- $(ALL_C)
|
2019-03-16 21:23:10 -03:00
|
|
|
|
|
|
|
VPATH=@SRCDIR@
|
|
|
|
|
2022-05-05 09:22:34 -04:00
|
|
|
%.c.o: CFLAGS += \
|
|
|
|
-D'CRYPTO_NAMESPACETOP=crypto_sign_ed25519_@ED25519IMPL@' \
|
|
|
|
-D'_CRYPTO_NAMESPACETOP=_crypto_sign_ed25519_@ED25519IMPL@' \
|
|
|
|
-D'CRYPTO_NAMESPACE(name)=crypto_sign_ed25519_@ED25519IMPL@_\#\#name' \
|
|
|
|
-D'_CRYPTO_NAMESPACE(name)=_crypto_sign_ed25519_@ED25519IMPL@_\#\#name' \
|
|
|
|
|
|
|
|
%.S.o: ASFLAGS += \
|
|
|
|
-D'CRYPTO_NAMESPACETOP=crypto_sign_ed25519_@ED25519IMPL@' \
|
|
|
|
-D'_CRYPTO_NAMESPACETOP=_crypto_sign_ed25519_@ED25519IMPL@' \
|
|
|
|
-D'CRYPTO_NAMESPACE(name)=crypto_sign_ed25519_@ED25519IMPL@_\#\#name' \
|
|
|
|
-D'_CRYPTO_NAMESPACE(name)=_crypto_sign_ed25519_@ED25519IMPL@_\#\#name' \
|
|
|
|
|
2019-03-16 21:23:10 -03:00
|
|
|
%.c.o: %.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@.tmp $< && $(MV) $@.tmp $@
|
|
|
|
|
2022-05-05 09:22:34 -04:00
|
|
|
%.S.o: %.S
|
2019-03-16 21:23:10 -03:00
|
|
|
$(CC) $(ASFLAGS) -c -o $@.tmp $< && $(MV) $@.tmp $@
|
2017-09-26 20:35:56 -03:00
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE
|
|
|
|
|
|
|
|
base16_from.c.o: types.h base16.h
|
|
|
|
base16_to.c.o: types.h base16.h
|
|
|
|
base32_from.c.o: types.h base32.h
|
|
|
|
base32_to.c.o: types.h base32.h
|
2018-07-05 20:20:51 -04:00
|
|
|
base64_from.c.o: types.h base64.h
|
|
|
|
base64_to.c.o: types.h base64.h
|
2017-10-05 21:14:33 -03:00
|
|
|
cpucount.c.o: cpucount.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_add.c.o: ed25519/amd64-51-30k/compat.h
|
2019-01-19 21:27:43 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_batchinvert.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_batchinvert.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_getparity.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_getparity.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_invert.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_invert.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_iseq.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_iseq.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_iszero.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_iszero.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_neg.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_neg.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_pack.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_pow2523.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_pow2523.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_setint.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_setint.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_sub.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_sub.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/fe25519_unpack.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/fe25519_unpack.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/sc25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/sc25519.h
|
2019-01-19 21:27:43 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_batchpack.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/ge25519_batchpack.c.o: ed25519/amd64-51-30k/compat.h
|
2019-01-19 21:27:43 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_batchpack.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_batchpack.c.o: ed25519/amd64-51-30k/sc25519.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/sc25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519_base_slide_multiples.data
|
|
|
|
ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/sc25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/index_heap.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/sc25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/sc25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519_base_niels_smalltables.data
|
|
|
|
ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/sc25519.h
|
|
|
|
ed25519/amd64-51-30k/hram.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
|
|
|
|
ed25519/amd64-51-30k/hram.c.o: ed25519/amd64-51-30k/hram.h
|
|
|
|
ed25519/amd64-51-30k/index_heap.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/index_heap.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/index_heap.c.o: ed25519/amd64-51-30k/index_heap.h
|
|
|
|
ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/crypto_sign.h
|
|
|
|
ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/ed25519.h
|
|
|
|
ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
|
|
|
|
ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/randombytes.h
|
|
|
|
ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/sc25519.h
|
|
|
|
ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_sign.h
|
|
|
|
ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/ed25519.h
|
|
|
|
ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
|
|
|
|
ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
|
|
|
|
ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/sc25519.h
|
|
|
|
ed25519/amd64-51-30k/sc25519_from32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/sc25519_from32bytes.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/sc25519_from64bytes.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/sc25519_from64bytes.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/sc25519_from_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/sc25519_from_shortsc.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/sc25519_iszero.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/sc25519_iszero.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/sc25519_mul.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/sc25519_mul.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/sc25519_mul_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/sc25519_mul_shortsc.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/sc25519_slide.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/sc25519_slide.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/sc25519_to32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/sc25519_to32bytes.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/sc25519_window4.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/sc25519_window4.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/crypto_sign.h
|
|
|
|
ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/ed25519.h
|
|
|
|
ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
|
|
|
|
ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/sc25519.h
|
2024-02-15 18:48:15 -03:00
|
|
|
ed25519/amd64-64-24k/fe25519_batchinvert.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_batchinvert.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_getparity.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_getparity.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_invert.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_invert.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_iseq.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_iseq.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_iszero.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_iszero.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_neg.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_neg.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_pack.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_pack.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_pow2523.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_pow2523.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_setint.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_setint.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_unpack.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/fe25519_unpack.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_batchpack.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_batchpack.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_batchpack.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_batchpack.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-64-24k/ge25519_base_slide_multiples.data
|
|
|
|
ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-64-24k/index_heap.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-64-24k/ge25519.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-64-24k/ge25519_base_niels.data
|
2024-02-15 18:48:15 -03:00
|
|
|
ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/hram.c.o: ed25519/amd64-64-24k/crypto_hash_sha512.h
|
|
|
|
ed25519/amd64-64-24k/hram.c.o: ed25519/amd64-64-24k/hram.h
|
|
|
|
ed25519/amd64-64-24k/index_heap.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/index_heap.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/index_heap.c.o: ed25519/amd64-64-24k/index_heap.h
|
|
|
|
ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-64-24k/crypto_sign.h
|
|
|
|
ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-64-24k/ed25519.h
|
|
|
|
ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-64-24k/crypto_hash_sha512.h
|
|
|
|
ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-64-24k/randombytes.h
|
|
|
|
ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/open.c.o: ed25519/amd64-64-24k/crypto_sign.h
|
|
|
|
ed25519/amd64-64-24k/open.c.o: ed25519/amd64-64-24k/ed25519.h
|
|
|
|
ed25519/amd64-64-24k/open.c.o: ed25519/amd64-64-24k/crypto_verify_32.h
|
|
|
|
ed25519/amd64-64-24k/open.c.o: ed25519/amd64-64-24k/crypto_hash_sha512.h
|
|
|
|
ed25519/amd64-64-24k/open.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/open.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/open.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/open.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_from32bytes.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_from32bytes.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_from64bytes.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_from64bytes.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_from_shortsc.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_from_shortsc.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_iszero.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_iszero.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_mul.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_mul.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_mul_shortsc.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_mul_shortsc.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_slide.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_slide.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_to32bytes.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_to32bytes.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_window4.c.o: ed25519/amd64-64-24k/sc25519.h
|
|
|
|
ed25519/amd64-64-24k/sc25519_window4.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-64-24k/crypto_sign.h
|
|
|
|
ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-64-24k/ed25519.h
|
|
|
|
ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-64-24k/crypto_hash_sha512.h
|
|
|
|
ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-64-24k/ge25519.h
|
|
|
|
ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-64-24k/fe25519.h
|
|
|
|
ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-64-24k/compat.h
|
|
|
|
ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-64-24k/sc25519.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/ref10/fe_0.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_1.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_add.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
2019-01-19 19:40:15 -03:00
|
|
|
ed25519/ref10/fe_batchinvert.c.o: ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/fe_batchinvert.c.o: ed25519/ref10/crypto_int32.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/ref10/fe_cmov.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_copy.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_int64.h
|
|
|
|
ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_uint64.h
|
|
|
|
ed25519/ref10/fe_invert.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_invert.c.o: ed25519/ref10/pow225521.h
|
|
|
|
ed25519/ref10/fe_isnegative.c.o: ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/fe_isnegative.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_isnonzero.c.o: ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/fe_isnonzero.c.o: ed25519/ref10/crypto_int32.h
|
2024-02-15 18:48:15 -03:00
|
|
|
ed25519/ref10/fe_isnonzero.c.o: ed25519/ref10/crypto_verify_32.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/ref10/fe_mul.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_mul.c.o: ed25519/ref10/crypto_int64.h
|
|
|
|
ed25519/ref10/fe_neg.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/pow22523.h
|
|
|
|
ed25519/ref10/fe_sq.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_sq.c.o: ed25519/ref10/crypto_int64.h
|
|
|
|
ed25519/ref10/fe_sq2.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_sq2.c.o: ed25519/ref10/crypto_int64.h
|
|
|
|
ed25519/ref10/fe_sub.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/fe_tobytes.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_add.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_add.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/ge_add.h
|
|
|
|
ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/base2.h
|
|
|
|
ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/d.h ed25519/ref10/sqrtm1.h
|
|
|
|
ed25519/ref10/ge_madd.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_madd.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_madd.c.o: ed25519/ref10/ge_madd.h
|
|
|
|
ed25519/ref10/ge_msub.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_msub.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_msub.c.o: ed25519/ref10/ge_msub.h
|
|
|
|
ed25519/ref10/ge_p1p1_to_p2.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_p1p1_to_p2.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_p1p1_to_p3.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_p1p1_to_p3.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_p2_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_p2_0.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/ge_p2_dbl.h
|
|
|
|
ed25519/ref10/ge_p3_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_p3_0.c.o: ed25519/ref10/crypto_int32.h
|
2019-01-19 19:40:15 -03:00
|
|
|
ed25519/ref10/ge_p3_batchtobytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_p3_batchtobytes.c.o: ed25519/ref10/crypto_int32.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/ref10/ge_p3_dbl.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_p3_dbl.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/d2.h
|
|
|
|
ed25519/ref10/ge_p3_to_p2.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_p3_to_p2.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_p3_tobytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_p3_tobytes.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_precomp_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_precomp_0.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/crypto_uint32.h
|
|
|
|
ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/base.h
|
|
|
|
ed25519/ref10/ge_sub.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_sub.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/ge_sub.h
|
|
|
|
ed25519/ref10/ge_tobytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/ge_tobytes.c.o: ed25519/ref10/crypto_int32.h
|
2024-02-15 18:48:15 -03:00
|
|
|
ed25519/ref10/keypair.c.o: ed25519/ref10/randombytes.h
|
|
|
|
ed25519/ref10/keypair.c.o: ed25519/ref10/crypto_sign.h
|
|
|
|
ed25519/ref10/keypair.c.o: ed25519/ref10/ed25519.h
|
|
|
|
ed25519/ref10/keypair.c.o: ed25519/ref10/crypto_hash_sha512.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/ref10/keypair.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
ed25519/ref10/keypair.c.o: ed25519/ref10/crypto_int32.h
|
2024-02-15 18:48:15 -03:00
|
|
|
ed25519/ref10/open.c.o: ed25519/ref10/crypto_sign.h ed25519/ref10/ed25519.h
|
|
|
|
ed25519/ref10/open.c.o: ed25519/ref10/crypto_hash_sha512.h
|
|
|
|
ed25519/ref10/open.c.o: ed25519/ref10/crypto_verify_32.h ed25519/ref10/ge.h
|
|
|
|
ed25519/ref10/open.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/open.c.o: ed25519/ref10/sc.h
|
2017-09-26 20:35:56 -03:00
|
|
|
ed25519/ref10/sc_muladd.c.o: ed25519/ref10/sc.h ed25519/ref10/crypto_int64.h
|
|
|
|
ed25519/ref10/sc_muladd.c.o: ed25519/ref10/crypto_uint32.h
|
|
|
|
ed25519/ref10/sc_muladd.c.o: ed25519/ref10/crypto_uint64.h
|
|
|
|
ed25519/ref10/sc_reduce.c.o: ed25519/ref10/sc.h ed25519/ref10/crypto_int64.h
|
|
|
|
ed25519/ref10/sc_reduce.c.o: ed25519/ref10/crypto_uint32.h
|
|
|
|
ed25519/ref10/sc_reduce.c.o: ed25519/ref10/crypto_uint64.h
|
2024-02-15 18:48:15 -03:00
|
|
|
ed25519/ref10/sign.c.o: ed25519/ref10/crypto_sign.h ed25519/ref10/ed25519.h
|
|
|
|
ed25519/ref10/sign.c.o: ed25519/ref10/crypto_hash_sha512.h ed25519/ref10/ge.h
|
|
|
|
ed25519/ref10/sign.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
ed25519/ref10/sign.c.o: ed25519/ref10/sc.h
|
2021-12-14 10:55:33 -03:00
|
|
|
ioutil.c.o: types.h ioutil.h vec.h
|
2017-09-26 20:35:56 -03:00
|
|
|
keccak.c.o: types.h keccak.h
|
2019-03-16 21:23:10 -03:00
|
|
|
main.c.o: types.h vec.h base32.h cpucount.h keccak.h ioutil.h common.h yaml.h
|
2021-12-14 10:55:33 -03:00
|
|
|
main.c.o: filters.h worker.h likely.h filters_inc.inc.h filters_main.inc.h
|
2021-03-21 14:16:23 -03:00
|
|
|
main.c.o: filters_common.inc.h ifilter_bitsum.h
|
2017-09-26 20:44:04 -03:00
|
|
|
test_base16.c.o: types.h base16.h
|
2017-09-26 20:35:56 -03:00
|
|
|
test_base32.c.o: types.h base32.h
|
2018-07-05 20:20:51 -04:00
|
|
|
test_base64.c.o: types.h base64.h
|
2022-05-05 09:22:34 -04:00
|
|
|
test_ed25519.c.o: types.h base16.h ed25519/ed25519.h
|
|
|
|
test_ed25519.c.o: ed25519/ed25519_impl_pre.h ed25519/ref10/crypto_sign.h
|
2024-02-15 18:48:15 -03:00
|
|
|
test_ed25519.c.o: ed25519/ref10/ed25519.h ed25519/ref10/ge.h
|
2022-05-05 09:22:34 -04:00
|
|
|
test_ed25519.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
|
|
|
|
test_ed25519.c.o: ed25519/amd64-51-30k/crypto_sign.h
|
2024-02-15 18:48:15 -03:00
|
|
|
test_ed25519.c.o: ed25519/amd64-51-30k/ed25519.h
|
2017-09-26 20:35:56 -03:00
|
|
|
test_ed25519.c.o: ed25519/amd64-51-30k/ge25519.h
|
|
|
|
test_ed25519.c.o: ed25519/amd64-51-30k/fe25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
test_ed25519.c.o: ed25519/amd64-51-30k/compat.h
|
2017-09-26 20:35:56 -03:00
|
|
|
test_ed25519.c.o: ed25519/amd64-51-30k/sc25519.h
|
2022-05-05 09:22:34 -04:00
|
|
|
test_ed25519.c.o: ed25519/amd64-64-24k/crypto_sign.h
|
2024-02-15 18:48:15 -03:00
|
|
|
test_ed25519.c.o: ed25519/amd64-64-24k/ed25519.h
|
2017-09-26 20:35:56 -03:00
|
|
|
test_ed25519.c.o: ed25519/amd64-64-24k/ge25519.h
|
2017-10-02 11:11:23 -03:00
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna.h
|
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-portable.h
|
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-portable-identify.h
|
2019-11-14 23:48:19 -03:00
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-sse2.h
|
2017-10-02 11:11:23 -03:00
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-64bit.h
|
2019-11-14 23:48:19 -03:00
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-32bit.h
|
2017-10-02 11:11:23 -03:00
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-helpers.h
|
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/modm-donna-64bit.h
|
2019-11-14 23:48:19 -03:00
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/modm-donna-32bit.h
|
2017-10-02 11:11:23 -03:00
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-basepoint-table.h
|
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-tables.h
|
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86.h
|
2019-11-14 23:48:19 -03:00
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-32bit-tables.h
|
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86-32bit.h
|
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-32bit-sse2.h
|
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-sse2.h
|
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-impl-sse2.h
|
2019-12-22 17:01:26 -03:00
|
|
|
test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h testutil.h
|
2022-05-05 09:22:34 -04:00
|
|
|
test_ed25519.c.o: ed25519/ed25519_impl_post.h
|
2017-10-21 21:40:23 -03:00
|
|
|
vec.c.o: vec.h
|
2022-05-30 16:47:53 -04:00
|
|
|
worker.c.o: types.h likely.h vec.h base32.h keccak.h ioutil.h common.h yaml.h
|
|
|
|
worker.c.o: worker.h filters.h filters_inc.inc.h filters_worker.inc.h
|
|
|
|
worker.c.o: filters_common.inc.h ed25519/ed25519.h worker_impl.inc.h
|
2022-05-05 09:22:34 -04:00
|
|
|
worker.c.o: ed25519/ed25519_impl_pre.h ed25519/ref10/crypto_sign.h
|
2024-02-15 18:48:15 -03:00
|
|
|
worker.c.o: ed25519/ref10/ed25519.h ed25519/ref10/ge.h ed25519/ref10/fe.h
|
|
|
|
worker.c.o: ed25519/ref10/crypto_int32.h ed25519/amd64-51-30k/crypto_sign.h
|
|
|
|
worker.c.o: ed25519/amd64-51-30k/ed25519.h ed25519/amd64-51-30k/ge25519.h
|
2022-05-30 19:11:40 -04:00
|
|
|
worker.c.o: ed25519/amd64-51-30k/fe25519.h ed25519/amd64-51-30k/compat.h
|
|
|
|
worker.c.o: ed25519/amd64-51-30k/sc25519.h ed25519/amd64-64-24k/crypto_sign.h
|
2024-02-15 18:48:15 -03:00
|
|
|
worker.c.o: ed25519/amd64-64-24k/ed25519.h ed25519/amd64-64-24k/ge25519.h
|
2019-03-16 16:57:29 -03:00
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna.h
|
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-portable.h
|
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-portable-identify.h
|
2019-11-14 23:48:19 -03:00
|
|
|
worker.c.o: ed25519/ed25519-donna/curve25519-donna-sse2.h
|
2019-03-16 16:57:29 -03:00
|
|
|
worker.c.o: ed25519/ed25519-donna/curve25519-donna-64bit.h
|
2019-11-14 23:48:19 -03:00
|
|
|
worker.c.o: ed25519/ed25519-donna/curve25519-donna-32bit.h
|
2019-03-16 16:57:29 -03:00
|
|
|
worker.c.o: ed25519/ed25519-donna/curve25519-donna-helpers.h
|
|
|
|
worker.c.o: ed25519/ed25519-donna/modm-donna-64bit.h
|
2019-11-14 23:48:19 -03:00
|
|
|
worker.c.o: ed25519/ed25519-donna/modm-donna-32bit.h
|
2019-03-16 16:57:29 -03:00
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-basepoint-table.h
|
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-tables.h
|
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86.h
|
2019-11-14 23:48:19 -03:00
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-32bit-tables.h
|
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86-32bit.h
|
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-32bit-sse2.h
|
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-sse2.h
|
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-impl-sse2.h
|
2023-06-09 10:16:46 -04:00
|
|
|
worker.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h
|
|
|
|
worker.c.o: worker_batch.inc.h worker_batch_pass.inc.h
|
|
|
|
worker.c.o: ed25519/ed25519_impl_post.h
|
2018-07-12 08:11:44 -04:00
|
|
|
yaml.c.o: types.h yaml.h ioutil.h base32.h base64.h common.h
|