keccak: fix mdlen bounds sanity checking

found by h908714124
release-v0.12
moneromooo-monero 6 years ago
parent 2e3e90acbe
commit e4646379a6
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -81,7 +81,8 @@ void keccak(const uint8_t *in, size_t inlen, uint8_t *md, int mdlen)
uint8_t temp[144];
size_t i, rsiz, rsizw;
if (mdlen <= 0 || mdlen > 200 || sizeof(st) != 200)
static_assert(HASH_DATA_AREA <= sizeof(temp), "Bad keccak preconditions");
if (mdlen <= 0 || (mdlen > 100 && sizeof(st) != (size_t)mdlen))
{
fprintf(stderr, "Bad keccak use");
abort();

Loading…
Cancel
Save