Fix documentation for mbedtls_gcm_finish()

Fix implementation and documentation missmatch for the function
arguments to mbedtls_gcm_finish(). Also, removed redundant if condition
that always evaluates to true.
This commit is contained in:
Andres AG 2016-09-26 10:09:30 +01:00 committed by Simon Butcher
parent 3a5e070982
commit 821da84ff9
3 changed files with 5 additions and 4 deletions

View file

@ -38,6 +38,8 @@ Bugfix
* Fixed the sample applications gen_key.c, cert_req.c and cert_write.c for
builds where the configuration MBEDTLS_PEM_WRITE_C is not defined. Found
by inestlerode. #559.
* Fix documentation and implementation missmatch for function arguments of
mbedtls_gcm_finish(). Found by cmiatpaar.
Changes
* Extended test coverage of special cases, and added new timing test suite.