mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
[core,security] fix assertion
The assert for the buffer size required too many bytes in the output buffer.
This commit is contained in:
parent
63121583eb
commit
1b177eeda9
@ -572,7 +572,7 @@ static void fips_expand_key_bits(const BYTE* in, size_t in_len, BYTE* out, size_
|
|||||||
WINPR_ASSERT(in_len >= sizeof(buf));
|
WINPR_ASSERT(in_len >= sizeof(buf));
|
||||||
|
|
||||||
WINPR_ASSERT(out);
|
WINPR_ASSERT(out);
|
||||||
WINPR_ASSERT(out_len > 24);
|
WINPR_ASSERT(out_len >= 24);
|
||||||
|
|
||||||
/* reverse every byte in the key */
|
/* reverse every byte in the key */
|
||||||
for (size_t i = 0; i < sizeof(buf); i++)
|
for (size_t i = 0; i < sizeof(buf); i++)
|
||||||
|
Loading…
Reference in New Issue
Block a user