Files
mbedtls/library
Rodrigo Dias Correa 375366a197 Fix mismatched function parameters (prototype/definition)
In GCC 11, parameters declared as arrays in function prototypes
cannot be declared as pointers in the function definition. The
same is true for the other way around.

The definition of `mbedtls_aes_cmac_prf_128` was changed to match
its public prototype in `cmac.h`. The type `output` was
`unsigned char *`, now is `unsigned char [16]`.

In `ssl_tls.c`, all the `ssl_calc_verify_*` variants now use pointers
for the output `hash` parameter. The array parameters were removed
because those functions must be compatible with the function pointer
`calc_verify` (defined in `ssl_internal.h`).

Signed-off-by: Rodrigo Dias Correa <rodrigo@correas.us>
2020-11-29 08:09:58 -03:00
..
2020-10-22 10:34:20 +02:00
2020-08-26 15:28:48 +01:00
2020-11-16 16:09:41 +01:00
2020-09-22 16:19:25 +02:00
2020-09-30 07:39:15 -05:00
2020-08-26 11:38:41 +02:00