Skip to content

Commit

Permalink
Submodules updated #177
Browse files Browse the repository at this point in the history
  • Loading branch information
ETatuzova committed Apr 26, 2024
1 parent e93741e commit ac21223
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/crypto3-testing-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
for check_name in "${check_names[@]}"; do
# This completes immediately since results are in cache
nix build .?submodules=1#checks.x86_64-linux.$check_name
nix build -L .?submodules=1#checks.x86_64-linux.$check_name
cp -r ./result/* "$results_dir/$check_name"
rm result
done
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crypto3-testing-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
for check_name in "${check_names[@]}"; do
# This completes immediately since results are in cache
nix build .?submodules=1#checks.x86_64-linux.$check_name
nix build -L .?submodules=1#checks.x86_64-linux.$check_name
cp -r ./result/* "$results_dir/$check_name"
rm result
done
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-submodule-testing-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
fi
echo "Running check for $check_name ${extra_args:+with $extra_args}"
nix build .?submodules=1#checks.x86_64-linux.$check_name $extra_args
nix build -L .?submodules=1#checks.x86_64-linux.$check_name $extra_args
cp -r ./result/* "$results_dir/$check_name"
rm -rf result
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-submodule-testing-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
fi
echo "Running check for $check_name ${extra_args:+with $extra_args}"
nix build .?submodules=1#checks.x86_64-darwin.$check_name $extra_args
nix build -L .?submodules=1#checks.x86_64-darwin.$check_name $extra_args
cp -r ./result/* "$results_dir/$check_name"
rm -rf result
Expand Down
2 changes: 1 addition & 1 deletion libs/hash
Submodule hash updated 62 files
+0 −13 .github/workflows/publish-results.yml
+0 −43 .github/workflows/pull-request-action.yml
+45 −6 .github/workflows/pull-request.yml
+2 −3 CMakeLists.txt
+175 −109 include/nil/crypto3/hash/accumulators/hash.hpp
+43 −0 include/nil/crypto3/hash/accumulators/parameters/words_to_consume.hpp
+103 −168 include/nil/crypto3/hash/algorithm/hash.hpp
+5 −13 include/nil/crypto3/hash/blake2b.hpp
+148 −0 include/nil/crypto3/hash/block_to_field_elements_wrapper.hpp
+43 −169 include/nil/crypto3/hash/crc.hpp
+1 −1 include/nil/crypto3/hash/detail/blake2b/blake2b_padding.hpp
+181 −0 include/nil/crypto3/hash/detail/block_cache.hpp
+0 −153 include/nil/crypto3/hash/detail/crc/accumulator.hpp
+1 −1 include/nil/crypto3/hash/detail/haifa_construction.hpp
+4 −0 include/nil/crypto3/hash/detail/keccak/keccak_avx2_impl.hpp
+0 −100 include/nil/crypto3/hash/detail/keccak/keccak_finalizer.hpp
+9 −0 include/nil/crypto3/hash/detail/keccak/keccak_functions.hpp
+38 −39 include/nil/crypto3/hash/detail/keccak/keccak_padding.hpp
+3 −2 include/nil/crypto3/hash/detail/keccak/keccak_policy.hpp
+0 −3 include/nil/crypto3/hash/detail/merkle_damgard_construction.hpp
+1 −1 include/nil/crypto3/hash/detail/merkle_damgard_padding.hpp
+5 −0 include/nil/crypto3/hash/detail/nop_finalizer.hpp
+106 −0 include/nil/crypto3/hash/detail/poseidon/nil_poseidon_sponge.hpp
+3 −4 include/nil/crypto3/hash/detail/poseidon/poseidon_constants.hpp
+77 −0 include/nil/crypto3/hash/detail/poseidon/poseidon_functions.hpp
+2 −5 include/nil/crypto3/hash/detail/poseidon/poseidon_permutation.hpp
+12 −22 include/nil/crypto3/hash/detail/poseidon/poseidon_policy.hpp
+3 −4 include/nil/crypto3/hash/detail/poseidon/poseidon_round_operator.hpp
+0 −85 include/nil/crypto3/hash/detail/poseidon/poseidon_sponge.hpp
+0 −91 include/nil/crypto3/hash/detail/sha3/sha3_finalizer.hpp
+16 −85 include/nil/crypto3/hash/detail/sha3/sha3_functions.hpp
+34 −54 include/nil/crypto3/hash/detail/sha3/sha3_padding.hpp
+3 −16 include/nil/crypto3/hash/detail/sha3/sha3_policy.hpp
+137 −56 include/nil/crypto3/hash/detail/sponge_construction.hpp
+12 −32 include/nil/crypto3/hash/detail/stream_processors/block_stream_processor.hpp
+12 −14 include/nil/crypto3/hash/detail/stream_processors/raw_delegating_stream_processor.hpp
+78 −0 include/nil/crypto3/hash/detail/stream_processors/raw_stream_processor.hpp
+44 −0 include/nil/crypto3/hash/detail/stream_processors/stream_processors_enum.hpp
+1 −1 include/nil/crypto3/hash/detail/tiger/tiger_padding.hpp
+3 −11 include/nil/crypto3/hash/find_group_hash.hpp
+6 −10 include/nil/crypto3/hash/h2c.hpp
+5 −9 include/nil/crypto3/hash/h2f.hpp
+9 −4 include/nil/crypto3/hash/hash_state.hpp
+31 −45 include/nil/crypto3/hash/hash_value.hpp
+9 −52 include/nil/crypto3/hash/keccak.hpp
+5 −12 include/nil/crypto3/hash/md4.hpp
+5 −12 include/nil/crypto3/hash/md5.hpp
+10 −22 include/nil/crypto3/hash/pedersen.hpp
+36 −46 include/nil/crypto3/hash/poseidon.hpp
+5 −12 include/nil/crypto3/hash/ripemd.hpp
+5 −12 include/nil/crypto3/hash/sha.hpp
+5 −12 include/nil/crypto3/hash/sha1.hpp
+6 −13 include/nil/crypto3/hash/sha2.hpp
+8 −48 include/nil/crypto3/hash/sha3.hpp
+5 −12 include/nil/crypto3/hash/tiger.hpp
+27 −0 include/nil/crypto3/hash/type_traits.hpp
+1 −3 test/CMakeLists.txt
+3 −2 test/data/sha3.json
+16 −16 test/keccak.cpp
+176 −129 test/poseidon.cpp
+61 −15 test/sha2.cpp
+140 −37 test/sha3.cpp

0 comments on commit ac21223

Please sign in to comment.