Added explicit casts to prevent compiler warnings when trying to build for iOS
diff --git a/library/pk.c b/library/pk.c
index 11faf3c..4aba3aa 100644
--- a/library/pk.c
+++ b/library/pk.c
@@ -222,7 +222,7 @@
 
         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 );