Skip to content

Commit

Permalink
reduce test input message size range
Browse files Browse the repository at this point in the history
Signed-off-by: Anjan Roy <[email protected]>
  • Loading branch information
itzmeanjan committed Feb 2, 2024
1 parent 9a96522 commit bd0fed8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "subtle"]
path = subtle
url = https://github.com/itzmeanjan/subtle.git
[submodule "gtest-parallel"]
path = gtest-parallel
url = https://github.com/google/gtest-parallel.git
1 change: 1 addition & 0 deletions gtest-parallel
Submodule gtest-parallel added at 96f4f9
2 changes: 1 addition & 1 deletion tests/test_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ constexpr size_t MAX_CT_LEN = 128;

// Min. and max. byte length of message to be absorbed into sponge.
constexpr size_t MIN_MSG_LEN = 0;
constexpr size_t MAX_MSG_LEN = 1024;
constexpr size_t MAX_MSG_LEN = 256;

// Min. and max. byte length of output to be squeezed from sponge.
constexpr size_t MIN_OUT_LEN = 0;
Expand Down

0 comments on commit bd0fed8

Please sign in to comment.