diff --git a/crypto/fipsmodule/sha/keccak1600.c b/crypto/fipsmodule/sha/keccak1600.c index a3b1f4be3e..7d88e744b7 100644 --- a/crypto/fipsmodule/sha/keccak1600.c +++ b/crypto/fipsmodule/sha/keccak1600.c @@ -360,7 +360,6 @@ size_t SHA3_Absorb(uint64_t A[SHA3_ROWS][SHA3_ROWS], const uint8_t *inp, size_t // generate |out| value of |len| bytes. |first| indicates weather // it is the first call to SHA3_Squeeze. // of |len| bytes.The Bool |first| indicates if the last/padded block has -// been processed. void SHA3_Squeeze(uint64_t A[SHA3_ROWS][SHA3_ROWS], uint8_t *out, size_t len, size_t r, int first) { uint64_t *A_flat = (uint64_t *)A;