You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
277B

  1. #ifndef AV_SHA1_H
  2. #define AV_SHA1_H
  3. extern const int av_sha1_size;
  4. struct AVSHA1;
  5. void av_sha1_init(struct AVSHA1* context);
  6. void av_sha1_update(struct AVSHA1* context, uint8_t* data, unsigned int len);
  7. void av_sha1_final(struct AVSHA1* context, uint8_t digest[20]);
  8. #endif