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:
committed by
Manuel Pégourié-Gonnard
parent
8ef7088bb9
commit
ef5087d150
@ -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 );
|
||||
|
Reference in New Issue
Block a user