123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #ifndef AVUTIL_RIPEMD_H
- #define AVUTIL_RIPEMD_H
- #include <stdint.h>
- #include "attributes.h"
- #include "version.h"
- extern const int av_ripemd_size;
- struct AVRIPEMD;
- struct AVRIPEMD *av_ripemd_alloc(void);
- int av_ripemd_init(struct AVRIPEMD* context, int bits);
- #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
- void av_ripemd_final(struct AVRIPEMD* context, uint8_t *digest);
- #endif
|