]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/sha.c
crypto: consistently use size_t as type for length parameters
[ffmpeg] / libavutil / sha.c
index 404effade2ebc5137bc535d7f8b735d8f59cfbaa..03f93aed8ce4393a07bcaeb73ccfc2780c454cf0 100644 (file)
@@ -290,7 +290,11 @@ av_cold int av_sha_init(AVSHA *ctx, int bits)
     return 0;
 }
 
-void av_sha_update(AVSHA* ctx, const uint8_t* data, unsigned int len)
+#if FF_API_CRYPTO_SIZE_T
+void av_sha_update(struct AVSHA *ctx, const uint8_t *data, unsigned int len)
+#else
+void av_sha_update(struct AVSHA *ctx, const uint8_t *data, size_t len)
+#endif
 {
     unsigned int i, j;