1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Added explicit casts to prevent compiler warnings when trying to build for iOS

This commit is contained in:
Sander Niemeijer
2014-08-16 12:45:52 +02:00
committed by Manuel Pégourié-Gonnard
parent 8ef7088bb9
commit ef5087d150
6 changed files with 14 additions and 8 deletions

View File

@ -222,7 +222,7 @@ int pk_verify_ext( pk_type_t type, const void *options,
ret = rsa_rsassa_pss_verify_ext( pk_rsa( *ctx ),
NULL, NULL, RSA_PUBLIC,
md_alg, hash_len, hash,
md_alg, (unsigned int) hash_len, hash,
pss_opts->mgf1_hash_id,
pss_opts->expected_salt_len,
sig );