Skip to content

Commit

Permalink
fuzz: fix timeout in crypto_fschacha20poly1305
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoerg committed Aug 27, 2024
1 parent c6d2d1c commit 8dec4e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/fuzz/crypto_chacha20poly1305.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ FUZZ_TARGET(crypto_fschacha20poly1305)
// data).
InsecureRandomContext rng(provider.ConsumeIntegral<uint64_t>());

LIMITED_WHILE(provider.ConsumeBool(), 10000)
LIMITED_WHILE(provider.ConsumeBool(), 100)
{
// Mode:
// - Bit 0: whether to use single-plain Encrypt/Decrypt; otherwise use a split at prefix.
Expand Down

0 comments on commit 8dec4e1

Please sign in to comment.