From 0d85f98c9d9b0227e42cf795cb527dff372b40a4 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Sat, 2 Sep 2023 16:24:37 +0200 Subject: [PATCH] Leaner TIS-CI tests TIS-CI tests take forever. It's annoying and cost them compute power for little benefit. A quick assesment of Monocypher reveals that the only things we really care about are endianness and main word size. Things like the sign of `char`, `sizeof(int)`, or `long double` are mostly (or entirely) irrelevant. So, all platforms supported by TIS-CI, only 5 are relevant: - 16-bits little endian (I chose x86_16) - 32-bits little endian (I chose x86_32) - 32-bits big endian (I chose sparc_32) - 32-bits little endian (I chose rv64ifdq) - 32-bits big endian (I chose mips_64) All the others are redundant. --- Also added the missing v_x25519 test. --- tests/tis-ci-gen-config.sh | 10 +- tis.config | 2014 ++++++------------------------------ 2 files changed, 320 insertions(+), 1704 deletions(-) diff --git a/tests/tis-ci-gen-config.sh b/tests/tis-ci-gen-config.sh index 4b31948f..806e7872 100755 --- a/tests/tis-ci-gen-config.sh +++ b/tests/tis-ci-gen-config.sh @@ -70,6 +70,7 @@ for entry_point in \ "v_sha512_hmac" \ "v_sha512_hkdf" \ "v_argon2" \ + "v_x25519" \ "v_edDSA" \ "v_edDSA_pk" \ "v_ed_25519" \ @@ -84,16 +85,11 @@ for entry_point in \ "p_verify64" do for platform in \ + "x86_16" \ "sparc_32" \ "x86_32" \ - "x86_16" \ - "x86_win64" \ - "armeb_eabi" \ - "arm_eabi" \ - "aarch64" \ "rv64ifdq" \ - "mips_64" \ - "ppc_64" + "mips_64" do echo '{ "name" :' "\"$entry_point - $platform\"" >> $TIS_CONFIG echo ', "files" :' >> $TIS_CONFIG diff --git a/tis.config b/tis.config index ffe1c53d..8f4c5c06 100644 --- a/tis.config +++ b/tis.config @@ -1,1374 +1,6 @@ // auto generated with tests/tis-ci-gen-config.sh [ -{ "name" : "p_wipe - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "p_wipe" -}, -{ "name" : "p_wipe - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "p_wipe" -}, -{ "name" : "p_wipe - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "p_wipe" -}, -{ "name" : "p_wipe - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "p_wipe" -}, -{ "name" : "p_wipe - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "p_wipe" -}, -{ "name" : "p_wipe - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "p_wipe" -}, -{ "name" : "p_wipe - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "p_wipe" -}, -{ "name" : "p_wipe - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "p_wipe" -}, -{ "name" : "p_wipe - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "p_wipe" -}, -{ "name" : "p_wipe - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "p_wipe" -}, -{ "name" : "v_chacha20 - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_chacha20" -}, -{ "name" : "v_chacha20 - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_chacha20" -}, -{ "name" : "v_chacha20 - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_chacha20" -}, -{ "name" : "v_chacha20 - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_chacha20" -}, -{ "name" : "v_chacha20 - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "v_chacha20" -}, -{ "name" : "v_chacha20 - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "v_chacha20" -}, -{ "name" : "v_chacha20 - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "v_chacha20" -}, -{ "name" : "v_chacha20 - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "v_chacha20" -}, -{ "name" : "v_chacha20 - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "v_chacha20" -}, -{ "name" : "v_chacha20 - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "v_chacha20" -}, -{ "name" : "v_ietf_chacha20 - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_ietf_chacha20" -}, -{ "name" : "v_ietf_chacha20 - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_ietf_chacha20" -}, -{ "name" : "v_ietf_chacha20 - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_ietf_chacha20" -}, -{ "name" : "v_ietf_chacha20 - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_ietf_chacha20" -}, -{ "name" : "v_ietf_chacha20 - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "v_ietf_chacha20" -}, -{ "name" : "v_ietf_chacha20 - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "v_ietf_chacha20" -}, -{ "name" : "v_ietf_chacha20 - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "v_ietf_chacha20" -}, -{ "name" : "v_ietf_chacha20 - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "v_ietf_chacha20" -}, -{ "name" : "v_ietf_chacha20 - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "v_ietf_chacha20" -}, -{ "name" : "v_ietf_chacha20 - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "v_ietf_chacha20" -}, -{ "name" : "v_hchacha20 - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_hchacha20" -}, -{ "name" : "v_hchacha20 - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_hchacha20" -}, -{ "name" : "v_hchacha20 - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_hchacha20" -}, -{ "name" : "v_hchacha20 - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_hchacha20" -}, -{ "name" : "v_hchacha20 - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "v_hchacha20" -}, -{ "name" : "v_hchacha20 - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "v_hchacha20" -}, -{ "name" : "v_hchacha20 - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "v_hchacha20" -}, -{ "name" : "v_hchacha20 - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "v_hchacha20" -}, -{ "name" : "v_hchacha20 - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "v_hchacha20" -}, -{ "name" : "v_hchacha20 - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "v_hchacha20" -}, -{ "name" : "v_xchacha20 - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_xchacha20" -}, -{ "name" : "v_xchacha20 - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_xchacha20" -}, -{ "name" : "v_xchacha20 - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_xchacha20" -}, -{ "name" : "v_xchacha20 - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_xchacha20" -}, -{ "name" : "v_xchacha20 - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "v_xchacha20" -}, -{ "name" : "v_xchacha20 - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "v_xchacha20" -}, -{ "name" : "v_xchacha20 - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "v_xchacha20" -}, -{ "name" : "v_xchacha20 - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "v_xchacha20" -}, -{ "name" : "v_xchacha20 - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "v_xchacha20" -}, -{ "name" : "v_xchacha20 - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "v_xchacha20" -}, -{ "name" : "v_poly1305 - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_poly1305" -}, -{ "name" : "v_poly1305 - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_poly1305" -}, -{ "name" : "v_poly1305 - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_poly1305" -}, -{ "name" : "v_poly1305 - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_poly1305" -}, -{ "name" : "v_poly1305 - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "v_poly1305" -}, -{ "name" : "v_poly1305 - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "v_poly1305" -}, -{ "name" : "v_poly1305 - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "v_poly1305" -}, -{ "name" : "v_poly1305 - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "v_poly1305" -}, -{ "name" : "v_poly1305 - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "v_poly1305" -}, -{ "name" : "v_poly1305 - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "v_poly1305" -}, -{ "name" : "v_aead_ietf - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_aead_ietf" -}, -{ "name" : "v_aead_ietf - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_aead_ietf" -}, -{ "name" : "v_aead_ietf - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_aead_ietf" -}, -{ "name" : "v_aead_ietf - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_aead_ietf" -}, -{ "name" : "v_aead_ietf - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "v_aead_ietf" -}, -{ "name" : "v_aead_ietf - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "v_aead_ietf" -}, -{ "name" : "v_aead_ietf - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "v_aead_ietf" -}, -{ "name" : "v_aead_ietf - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "v_aead_ietf" -}, -{ "name" : "v_aead_ietf - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "v_aead_ietf" -}, -{ "name" : "v_aead_ietf - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "v_aead_ietf" -}, -{ "name" : "v_blake2b - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_blake2b" -}, -{ "name" : "v_blake2b - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_blake2b" -}, -{ "name" : "v_blake2b - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_blake2b" -}, -{ "name" : "v_blake2b - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_blake2b" -}, -{ "name" : "v_blake2b - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "v_blake2b" -}, -{ "name" : "v_blake2b - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "v_blake2b" -}, -{ "name" : "v_blake2b - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "v_blake2b" -}, -{ "name" : "v_blake2b - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "v_blake2b" -}, -{ "name" : "v_blake2b - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "v_blake2b" -}, -{ "name" : "v_blake2b - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "v_blake2b" -}, -{ "name" : "v_sha512 - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_sha512" -}, -{ "name" : "v_sha512 - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_sha512" -}, -{ "name" : "v_sha512 - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_sha512" -}, -{ "name" : "v_sha512 - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_sha512" -}, -{ "name" : "v_sha512 - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "v_sha512" -}, -{ "name" : "v_sha512 - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "v_sha512" -}, -{ "name" : "v_sha512 - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "v_sha512" -}, -{ "name" : "v_sha512 - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "v_sha512" -}, -{ "name" : "v_sha512 - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "v_sha512" -}, -{ "name" : "v_sha512 - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "v_sha512" -}, -{ "name" : "v_sha512_hmac - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_sha512_hmac" -}, -{ "name" : "v_sha512_hmac - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_sha512_hmac" -}, -{ "name" : "v_sha512_hmac - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_sha512_hmac" -}, -{ "name" : "v_sha512_hmac - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_sha512_hmac" -}, -{ "name" : "v_sha512_hmac - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "v_sha512_hmac" -}, -{ "name" : "v_sha512_hmac - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "v_sha512_hmac" -}, -{ "name" : "v_sha512_hmac - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "v_sha512_hmac" -}, -{ "name" : "v_sha512_hmac - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "v_sha512_hmac" -}, -{ "name" : "v_sha512_hmac - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "v_sha512_hmac" -}, -{ "name" : "v_sha512_hmac - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "v_sha512_hmac" -}, -{ "name" : "v_sha512_hkdf - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_sha512_hkdf" -}, -{ "name" : "v_sha512_hkdf - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_sha512_hkdf" -}, -{ "name" : "v_sha512_hkdf - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_sha512_hkdf" -}, -{ "name" : "v_sha512_hkdf - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_sha512_hkdf" -}, -{ "name" : "v_sha512_hkdf - armeb_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" -, "no-results" : true -, "main" : "v_sha512_hkdf" -}, -{ "name" : "v_sha512_hkdf - arm_eabi" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" -, "no-results" : true -, "main" : "v_sha512_hkdf" -}, -{ "name" : "v_sha512_hkdf - aarch64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" -, "no-results" : true -, "main" : "v_sha512_hkdf" -}, -{ "name" : "v_sha512_hkdf - rv64ifdq" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "rv64ifdq" -, "no-results" : true -, "main" : "v_sha512_hkdf" -}, -{ "name" : "v_sha512_hkdf - mips_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "mips_64" -, "no-results" : true -, "main" : "v_sha512_hkdf" -}, -{ "name" : "v_sha512_hkdf - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "v_sha512_hkdf" -}, -{ "name" : "v_argon2 - sparc_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "sparc_32" -, "no-results" : true -, "main" : "v_argon2" -}, -{ "name" : "v_argon2 - x86_32" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_32" -, "no-results" : true -, "main" : "v_argon2" -}, -{ "name" : "v_argon2 - x86_16" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" -, "no-results" : true -, "main" : "v_argon2" -}, -{ "name" : "v_argon2 - x86_win64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" -, "no-results" : true -, "main" : "v_argon2" -}, -{ "name" : "v_argon2 - armeb_eabi" +{ "name" : "p_wipe - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1376,11 +8,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_argon2" +, "main" : "p_wipe" }, -{ "name" : "v_argon2 - arm_eabi" +{ "name" : "p_wipe - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1388,11 +20,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_argon2" +, "main" : "p_wipe" }, -{ "name" : "v_argon2 - aarch64" +{ "name" : "p_wipe - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1400,11 +32,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "v_argon2" +, "main" : "p_wipe" }, -{ "name" : "v_argon2 - rv64ifdq" +{ "name" : "p_wipe - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1414,9 +46,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_argon2" +, "main" : "p_wipe" }, -{ "name" : "v_argon2 - mips_64" +{ "name" : "p_wipe - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1426,9 +58,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "v_argon2" +, "main" : "p_wipe" }, -{ "name" : "v_argon2 - ppc_64" +{ "name" : "v_chacha20 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1436,11 +68,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_argon2" +, "main" : "v_chacha20" }, -{ "name" : "v_edDSA - sparc_32" +{ "name" : "v_chacha20 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1450,9 +82,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_edDSA" +, "main" : "v_chacha20" }, -{ "name" : "v_edDSA - x86_32" +{ "name" : "v_chacha20 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1462,9 +94,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "v_edDSA" +, "main" : "v_chacha20" }, -{ "name" : "v_edDSA - x86_16" +{ "name" : "v_chacha20 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1472,11 +104,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_edDSA" +, "main" : "v_chacha20" }, -{ "name" : "v_edDSA - x86_win64" +{ "name" : "v_chacha20 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1484,11 +116,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "v_edDSA" +, "main" : "v_chacha20" }, -{ "name" : "v_edDSA - armeb_eabi" +{ "name" : "v_ietf_chacha20 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1496,11 +128,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_edDSA" +, "main" : "v_ietf_chacha20" }, -{ "name" : "v_edDSA - arm_eabi" +{ "name" : "v_ietf_chacha20 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1508,11 +140,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_edDSA" +, "main" : "v_ietf_chacha20" }, -{ "name" : "v_edDSA - aarch64" +{ "name" : "v_ietf_chacha20 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1520,11 +152,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "v_edDSA" +, "main" : "v_ietf_chacha20" }, -{ "name" : "v_edDSA - rv64ifdq" +{ "name" : "v_ietf_chacha20 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1534,9 +166,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_edDSA" +, "main" : "v_ietf_chacha20" }, -{ "name" : "v_edDSA - mips_64" +{ "name" : "v_ietf_chacha20 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1546,9 +178,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "v_edDSA" +, "main" : "v_ietf_chacha20" }, -{ "name" : "v_edDSA - ppc_64" +{ "name" : "v_hchacha20 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1556,11 +188,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_edDSA" +, "main" : "v_hchacha20" }, -{ "name" : "v_edDSA_pk - sparc_32" +{ "name" : "v_hchacha20 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1570,9 +202,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_edDSA_pk" +, "main" : "v_hchacha20" }, -{ "name" : "v_edDSA_pk - x86_32" +{ "name" : "v_hchacha20 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1582,9 +214,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "v_edDSA_pk" +, "main" : "v_hchacha20" }, -{ "name" : "v_edDSA_pk - x86_16" +{ "name" : "v_hchacha20 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1592,11 +224,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_edDSA_pk" +, "main" : "v_hchacha20" }, -{ "name" : "v_edDSA_pk - x86_win64" +{ "name" : "v_hchacha20 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1604,11 +236,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "v_edDSA_pk" +, "main" : "v_hchacha20" }, -{ "name" : "v_edDSA_pk - armeb_eabi" +{ "name" : "v_xchacha20 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1616,11 +248,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_edDSA_pk" +, "main" : "v_xchacha20" }, -{ "name" : "v_edDSA_pk - arm_eabi" +{ "name" : "v_xchacha20 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1628,11 +260,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_edDSA_pk" +, "main" : "v_xchacha20" }, -{ "name" : "v_edDSA_pk - aarch64" +{ "name" : "v_xchacha20 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1640,11 +272,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "v_edDSA_pk" +, "main" : "v_xchacha20" }, -{ "name" : "v_edDSA_pk - rv64ifdq" +{ "name" : "v_xchacha20 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1654,9 +286,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_edDSA_pk" +, "main" : "v_xchacha20" }, -{ "name" : "v_edDSA_pk - mips_64" +{ "name" : "v_xchacha20 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1666,9 +298,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "v_edDSA_pk" +, "main" : "v_xchacha20" }, -{ "name" : "v_edDSA_pk - ppc_64" +{ "name" : "v_poly1305 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1676,11 +308,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_edDSA_pk" +, "main" : "v_poly1305" }, -{ "name" : "v_ed_25519 - sparc_32" +{ "name" : "v_poly1305 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1690,9 +322,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_ed_25519" +, "main" : "v_poly1305" }, -{ "name" : "v_ed_25519 - x86_32" +{ "name" : "v_poly1305 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1702,9 +334,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "v_ed_25519" +, "main" : "v_poly1305" }, -{ "name" : "v_ed_25519 - x86_16" +{ "name" : "v_poly1305 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1712,11 +344,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_ed_25519" +, "main" : "v_poly1305" }, -{ "name" : "v_ed_25519 - x86_win64" +{ "name" : "v_poly1305 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1724,11 +356,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "v_ed_25519" +, "main" : "v_poly1305" }, -{ "name" : "v_ed_25519 - armeb_eabi" +{ "name" : "v_aead_ietf - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1736,11 +368,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_ed_25519" +, "main" : "v_aead_ietf" }, -{ "name" : "v_ed_25519 - arm_eabi" +{ "name" : "v_aead_ietf - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1748,11 +380,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_ed_25519" +, "main" : "v_aead_ietf" }, -{ "name" : "v_ed_25519 - aarch64" +{ "name" : "v_aead_ietf - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1760,11 +392,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "v_ed_25519" +, "main" : "v_aead_ietf" }, -{ "name" : "v_ed_25519 - rv64ifdq" +{ "name" : "v_aead_ietf - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1774,9 +406,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_ed_25519" +, "main" : "v_aead_ietf" }, -{ "name" : "v_ed_25519 - mips_64" +{ "name" : "v_aead_ietf - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1786,9 +418,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "v_ed_25519" +, "main" : "v_aead_ietf" }, -{ "name" : "v_ed_25519 - ppc_64" +{ "name" : "v_blake2b - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1796,11 +428,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_ed_25519" +, "main" : "v_blake2b" }, -{ "name" : "v_ed_25519_check - sparc_32" +{ "name" : "v_blake2b - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1810,9 +442,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_ed_25519_check" +, "main" : "v_blake2b" }, -{ "name" : "v_ed_25519_check - x86_32" +{ "name" : "v_blake2b - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1822,9 +454,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "v_ed_25519_check" +, "main" : "v_blake2b" }, -{ "name" : "v_ed_25519_check - x86_16" +{ "name" : "v_blake2b - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1832,11 +464,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_ed_25519_check" +, "main" : "v_blake2b" }, -{ "name" : "v_ed_25519_check - x86_win64" +{ "name" : "v_blake2b - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1844,11 +476,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "v_ed_25519_check" +, "main" : "v_blake2b" }, -{ "name" : "v_ed_25519_check - armeb_eabi" +{ "name" : "v_sha512 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1856,11 +488,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_ed_25519_check" +, "main" : "v_sha512" }, -{ "name" : "v_ed_25519_check - arm_eabi" +{ "name" : "v_sha512 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1868,11 +500,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_ed_25519_check" +, "main" : "v_sha512" }, -{ "name" : "v_ed_25519_check - aarch64" +{ "name" : "v_sha512 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1880,11 +512,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "v_ed_25519_check" +, "main" : "v_sha512" }, -{ "name" : "v_ed_25519_check - rv64ifdq" +{ "name" : "v_sha512 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1894,9 +526,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_ed_25519_check" +, "main" : "v_sha512" }, -{ "name" : "v_ed_25519_check - mips_64" +{ "name" : "v_sha512 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1906,9 +538,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "v_ed_25519_check" +, "main" : "v_sha512" }, -{ "name" : "v_ed_25519_check - ppc_64" +{ "name" : "v_sha512_hmac - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1916,11 +548,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_ed_25519_check" +, "main" : "v_sha512_hmac" }, -{ "name" : "v_elligator_dir - sparc_32" +{ "name" : "v_sha512_hmac - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1930,9 +562,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_elligator_dir" +, "main" : "v_sha512_hmac" }, -{ "name" : "v_elligator_dir - x86_32" +{ "name" : "v_sha512_hmac - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1942,9 +574,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "v_elligator_dir" +, "main" : "v_sha512_hmac" }, -{ "name" : "v_elligator_dir - x86_16" +{ "name" : "v_sha512_hmac - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1952,11 +584,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_elligator_dir" +, "main" : "v_sha512_hmac" }, -{ "name" : "v_elligator_dir - x86_win64" +{ "name" : "v_sha512_hmac - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1964,11 +596,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "v_elligator_dir" +, "main" : "v_sha512_hmac" }, -{ "name" : "v_elligator_dir - armeb_eabi" +{ "name" : "v_sha512_hkdf - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1976,11 +608,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_elligator_dir" +, "main" : "v_sha512_hkdf" }, -{ "name" : "v_elligator_dir - arm_eabi" +{ "name" : "v_sha512_hkdf - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -1988,11 +620,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_elligator_dir" +, "main" : "v_sha512_hkdf" }, -{ "name" : "v_elligator_dir - aarch64" +{ "name" : "v_sha512_hkdf - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2000,11 +632,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "v_elligator_dir" +, "main" : "v_sha512_hkdf" }, -{ "name" : "v_elligator_dir - rv64ifdq" +{ "name" : "v_sha512_hkdf - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2014,9 +646,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_elligator_dir" +, "main" : "v_sha512_hkdf" }, -{ "name" : "v_elligator_dir - mips_64" +{ "name" : "v_sha512_hkdf - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2026,9 +658,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "v_elligator_dir" +, "main" : "v_sha512_hkdf" }, -{ "name" : "v_elligator_dir - ppc_64" +{ "name" : "v_argon2 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2036,11 +668,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_elligator_dir" +, "main" : "v_argon2" }, -{ "name" : "v_elligator_inv - sparc_32" +{ "name" : "v_argon2 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2050,9 +682,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_elligator_inv" +, "main" : "v_argon2" }, -{ "name" : "v_elligator_inv - x86_32" +{ "name" : "v_argon2 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2062,9 +694,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "v_elligator_inv" +, "main" : "v_argon2" }, -{ "name" : "v_elligator_inv - x86_16" +{ "name" : "v_argon2 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2072,11 +704,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_elligator_inv" +, "main" : "v_argon2" }, -{ "name" : "v_elligator_inv - x86_win64" +{ "name" : "v_argon2 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2084,11 +716,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "v_elligator_inv" +, "main" : "v_argon2" }, -{ "name" : "v_elligator_inv - armeb_eabi" +{ "name" : "v_x25519 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2096,11 +728,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_elligator_inv" +, "main" : "v_x25519" }, -{ "name" : "v_elligator_inv - arm_eabi" +{ "name" : "v_x25519 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2108,11 +740,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "v_elligator_inv" +, "main" : "v_x25519" }, -{ "name" : "v_elligator_inv - aarch64" +{ "name" : "v_x25519 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2120,11 +752,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "v_elligator_inv" +, "main" : "v_x25519" }, -{ "name" : "v_elligator_inv - rv64ifdq" +{ "name" : "v_x25519 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2134,9 +766,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "v_elligator_inv" +, "main" : "v_x25519" }, -{ "name" : "v_elligator_inv - mips_64" +{ "name" : "v_x25519 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2146,9 +778,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "v_elligator_inv" +, "main" : "v_x25519" }, -{ "name" : "v_elligator_inv - ppc_64" +{ "name" : "v_edDSA - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2156,11 +788,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "v_elligator_inv" +, "main" : "v_edDSA" }, -{ "name" : "p_eddsa_x25519 - sparc_32" +{ "name" : "v_edDSA - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2170,9 +802,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_eddsa_x25519" +, "main" : "v_edDSA" }, -{ "name" : "p_eddsa_x25519 - x86_32" +{ "name" : "v_edDSA - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2182,9 +814,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "p_eddsa_x25519" +, "main" : "v_edDSA" }, -{ "name" : "p_eddsa_x25519 - x86_16" +{ "name" : "v_edDSA - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2192,11 +824,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_eddsa_x25519" +, "main" : "v_edDSA" }, -{ "name" : "p_eddsa_x25519 - x86_win64" +{ "name" : "v_edDSA - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2204,11 +836,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "p_eddsa_x25519" +, "main" : "v_edDSA" }, -{ "name" : "p_eddsa_x25519 - armeb_eabi" +{ "name" : "v_edDSA_pk - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2216,11 +848,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "p_eddsa_x25519" +, "main" : "v_edDSA_pk" }, -{ "name" : "p_eddsa_x25519 - arm_eabi" +{ "name" : "v_edDSA_pk - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2228,11 +860,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_eddsa_x25519" +, "main" : "v_edDSA_pk" }, -{ "name" : "p_eddsa_x25519 - aarch64" +{ "name" : "v_edDSA_pk - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2240,11 +872,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "p_eddsa_x25519" +, "main" : "v_edDSA_pk" }, -{ "name" : "p_eddsa_x25519 - rv64ifdq" +{ "name" : "v_edDSA_pk - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2254,9 +886,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_eddsa_x25519" +, "main" : "v_edDSA_pk" }, -{ "name" : "p_eddsa_x25519 - mips_64" +{ "name" : "v_edDSA_pk - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2266,9 +898,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "p_eddsa_x25519" +, "main" : "v_edDSA_pk" }, -{ "name" : "p_eddsa_x25519 - ppc_64" +{ "name" : "v_ed_25519 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2276,11 +908,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "p_eddsa_x25519" +, "main" : "v_ed_25519" }, -{ "name" : "p_dirty - sparc_32" +{ "name" : "v_ed_25519 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2290,9 +922,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_dirty" +, "main" : "v_ed_25519" }, -{ "name" : "p_dirty - x86_32" +{ "name" : "v_ed_25519 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2302,9 +934,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "p_dirty" +, "main" : "v_ed_25519" }, -{ "name" : "p_dirty - x86_16" +{ "name" : "v_ed_25519 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2312,11 +944,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_dirty" +, "main" : "v_ed_25519" }, -{ "name" : "p_dirty - x86_win64" +{ "name" : "v_ed_25519 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2324,11 +956,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "p_dirty" +, "main" : "v_ed_25519" }, -{ "name" : "p_dirty - armeb_eabi" +{ "name" : "v_ed_25519_check - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2336,11 +968,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "p_dirty" +, "main" : "v_ed_25519_check" }, -{ "name" : "p_dirty - arm_eabi" +{ "name" : "v_ed_25519_check - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2348,11 +980,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_dirty" +, "main" : "v_ed_25519_check" }, -{ "name" : "p_dirty - aarch64" +{ "name" : "v_ed_25519_check - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2360,11 +992,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "p_dirty" +, "main" : "v_ed_25519_check" }, -{ "name" : "p_dirty - rv64ifdq" +{ "name" : "v_ed_25519_check - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2374,9 +1006,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_dirty" +, "main" : "v_ed_25519_check" }, -{ "name" : "p_dirty - mips_64" +{ "name" : "v_ed_25519_check - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2386,9 +1018,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "p_dirty" +, "main" : "v_ed_25519_check" }, -{ "name" : "p_dirty - ppc_64" +{ "name" : "v_elligator_dir - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2396,11 +1028,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "p_dirty" +, "main" : "v_elligator_dir" }, -{ "name" : "p_x25519_inverse - sparc_32" +{ "name" : "v_elligator_dir - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2410,9 +1042,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_x25519_inverse" +, "main" : "v_elligator_dir" }, -{ "name" : "p_x25519_inverse - x86_32" +{ "name" : "v_elligator_dir - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2422,9 +1054,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "p_x25519_inverse" +, "main" : "v_elligator_dir" }, -{ "name" : "p_x25519_inverse - x86_16" +{ "name" : "v_elligator_dir - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2432,11 +1064,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_x25519_inverse" +, "main" : "v_elligator_dir" }, -{ "name" : "p_x25519_inverse - x86_win64" +{ "name" : "v_elligator_dir - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2444,11 +1076,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "p_x25519_inverse" +, "main" : "v_elligator_dir" }, -{ "name" : "p_x25519_inverse - armeb_eabi" +{ "name" : "v_elligator_inv - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2456,11 +1088,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "p_x25519_inverse" +, "main" : "v_elligator_inv" }, -{ "name" : "p_x25519_inverse - arm_eabi" +{ "name" : "v_elligator_inv - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2468,11 +1100,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_x25519_inverse" +, "main" : "v_elligator_inv" }, -{ "name" : "p_x25519_inverse - aarch64" +{ "name" : "v_elligator_inv - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2480,11 +1112,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "p_x25519_inverse" +, "main" : "v_elligator_inv" }, -{ "name" : "p_x25519_inverse - rv64ifdq" +{ "name" : "v_elligator_inv - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2494,9 +1126,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_x25519_inverse" +, "main" : "v_elligator_inv" }, -{ "name" : "p_x25519_inverse - mips_64" +{ "name" : "v_elligator_inv - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2506,9 +1138,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "p_x25519_inverse" +, "main" : "v_elligator_inv" }, -{ "name" : "p_x25519_inverse - ppc_64" +{ "name" : "p_eddsa_x25519 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2516,11 +1148,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "p_x25519_inverse" +, "main" : "p_eddsa_x25519" }, -{ "name" : "p_verify16 - sparc_32" +{ "name" : "p_eddsa_x25519 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2530,9 +1162,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_verify16" +, "main" : "p_eddsa_x25519" }, -{ "name" : "p_verify16 - x86_32" +{ "name" : "p_eddsa_x25519 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2542,9 +1174,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "p_verify16" +, "main" : "p_eddsa_x25519" }, -{ "name" : "p_verify16 - x86_16" +{ "name" : "p_eddsa_x25519 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2552,11 +1184,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_verify16" +, "main" : "p_eddsa_x25519" }, -{ "name" : "p_verify16 - x86_win64" +{ "name" : "p_eddsa_x25519 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2564,11 +1196,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "p_verify16" +, "main" : "p_eddsa_x25519" }, -{ "name" : "p_verify16 - armeb_eabi" +{ "name" : "p_dirty - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2576,11 +1208,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "p_verify16" +, "main" : "p_dirty" }, -{ "name" : "p_verify16 - arm_eabi" +{ "name" : "p_dirty - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2588,11 +1220,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_verify16" +, "main" : "p_dirty" }, -{ "name" : "p_verify16 - aarch64" +{ "name" : "p_dirty - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2600,11 +1232,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "p_verify16" +, "main" : "p_dirty" }, -{ "name" : "p_verify16 - rv64ifdq" +{ "name" : "p_dirty - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2614,9 +1246,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_verify16" +, "main" : "p_dirty" }, -{ "name" : "p_verify16 - mips_64" +{ "name" : "p_dirty - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2626,9 +1258,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "p_verify16" +, "main" : "p_dirty" }, -{ "name" : "p_verify16 - ppc_64" +{ "name" : "p_x25519_inverse - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2636,11 +1268,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "p_verify16" +, "main" : "p_x25519_inverse" }, -{ "name" : "p_verify32 - sparc_32" +{ "name" : "p_x25519_inverse - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2650,9 +1282,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_verify32" +, "main" : "p_x25519_inverse" }, -{ "name" : "p_verify32 - x86_32" +{ "name" : "p_x25519_inverse - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2662,9 +1294,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "p_verify32" +, "main" : "p_x25519_inverse" }, -{ "name" : "p_verify32 - x86_16" +{ "name" : "p_x25519_inverse - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2672,11 +1304,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_verify32" +, "main" : "p_x25519_inverse" }, -{ "name" : "p_verify32 - x86_win64" +{ "name" : "p_x25519_inverse - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2684,11 +1316,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "p_verify32" +, "main" : "p_x25519_inverse" }, -{ "name" : "p_verify32 - armeb_eabi" +{ "name" : "p_verify16 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2696,11 +1328,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true -, "main" : "p_verify32" +, "main" : "p_verify16" }, -{ "name" : "p_verify32 - arm_eabi" +{ "name" : "p_verify16 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2708,11 +1340,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_verify32" +, "main" : "p_verify16" }, -{ "name" : "p_verify32 - aarch64" +{ "name" : "p_verify16 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2720,11 +1352,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true -, "main" : "p_verify32" +, "main" : "p_verify16" }, -{ "name" : "p_verify32 - rv64ifdq" +{ "name" : "p_verify16 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2734,9 +1366,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_verify32" +, "main" : "p_verify16" }, -{ "name" : "p_verify32 - mips_64" +{ "name" : "p_verify16 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2746,9 +1378,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "mips_64" , "no-results" : true -, "main" : "p_verify32" +, "main" : "p_verify16" }, -{ "name" : "p_verify32 - ppc_64" +{ "name" : "p_verify32 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2756,11 +1388,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" +, "machdep" : "x86_16" , "no-results" : true , "main" : "p_verify32" }, -{ "name" : "p_verify64 - sparc_32" +{ "name" : "p_verify32 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2770,9 +1402,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "sparc_32" , "no-results" : true -, "main" : "p_verify64" +, "main" : "p_verify32" }, -{ "name" : "p_verify64 - x86_32" +{ "name" : "p_verify32 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2782,9 +1414,9 @@ , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" , "machdep" : "x86_32" , "no-results" : true -, "main" : "p_verify64" +, "main" : "p_verify32" }, -{ "name" : "p_verify64 - x86_16" +{ "name" : "p_verify32 - rv64ifdq" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2792,11 +1424,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_16" +, "machdep" : "rv64ifdq" , "no-results" : true -, "main" : "p_verify64" +, "main" : "p_verify32" }, -{ "name" : "p_verify64 - x86_win64" +{ "name" : "p_verify32 - mips_64" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2804,11 +1436,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "x86_win64" +, "machdep" : "mips_64" , "no-results" : true -, "main" : "p_verify64" +, "main" : "p_verify32" }, -{ "name" : "p_verify64 - armeb_eabi" +{ "name" : "p_verify64 - x86_16" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2816,11 +1448,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "armeb_eabi" +, "machdep" : "x86_16" , "no-results" : true , "main" : "p_verify64" }, -{ "name" : "p_verify64 - arm_eabi" +{ "name" : "p_verify64 - sparc_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2828,11 +1460,11 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "arm_eabi" +, "machdep" : "sparc_32" , "no-results" : true , "main" : "p_verify64" }, -{ "name" : "p_verify64 - aarch64" +{ "name" : "p_verify64 - x86_32" , "files" : [ "src/monocypher.c" , "src/optional/monocypher-ed25519.c" @@ -2840,7 +1472,7 @@ , "tests/tis-ci.c" ] , "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "aarch64" +, "machdep" : "x86_32" , "no-results" : true , "main" : "p_verify64" }, @@ -2867,17 +1499,5 @@ , "machdep" : "mips_64" , "no-results" : true , "main" : "p_verify64" -}, -{ "name" : "p_verify64 - ppc_64" -, "files" : - [ "src/monocypher.c" - , "src/optional/monocypher-ed25519.c" - , "tests/utils.c" - , "tests/tis-ci.c" - ] -, "cpp-extra-args": "-Isrc -Isrc/optional -Itests -Dvolatile=" -, "machdep" : "ppc_64" -, "no-results" : true -, "main" : "p_verify64" } ]