avutil/crypto: change length parameter to size_t on the remaining modules
See651ee93461fcc4ed1efaSigned-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
75027066d8
commit
8a8d0b319a
7 changed files with 32 additions and 0 deletions
|
|
@ -66,7 +66,11 @@ int av_ripemd_init(struct AVRIPEMD* context, int bits);
|
|||
* @param data input data to update hash with
|
||||
* @param len input data length
|
||||
*/
|
||||
#if FF_API_CRYPTO_SIZE_T
|
||||
void av_ripemd_update(struct AVRIPEMD* context, const uint8_t* data, unsigned int len);
|
||||
#else
|
||||
void av_ripemd_update(struct AVRIPEMD* context, const uint8_t* data, size_t len);
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Finish hashing and output digest value.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue