Merge pull request #3500 from AndrzejKurek/fi-sha256-fixes

Introduce sha256 security review fixes
This commit is contained in:
Andrzej Kurek 2020-08-03 12:13:40 +02:00 committed by GitHub
commit 898d330148
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 21 deletions

View file

@ -118,7 +118,7 @@ int mbedtls_sha256_starts_ret( mbedtls_sha256_context *ctx, int is224 );
* and have a hash operation started.
* \param input The buffer holding the data. This must be a readable
* buffer of length \p ilen Bytes.
* \param ilen The length of the input data in Bytes.
* \param ilen The length of the input data in Bytes. At most UINT32_MAX.
*
* \return \c 0 on success.
* \return A negative error code on failure.