ripemd.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright (C) 2007 Michael Niedermayer <michaelni@gmx.at>
  3. * Copyright (C) 2013 James Almer <jamrial@gmail.com>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * @ingroup lavu_ripemd
  24. * Public header for RIPEMD hash function implementation.
  25. */
  26. #ifndef AVUTIL_RIPEMD_H
  27. #define AVUTIL_RIPEMD_H
  28. #include <stdint.h>
  29. #include "attributes.h"
  30. #include "version.h"
  31. /**
  32. * @defgroup lavu_ripemd RIPEMD
  33. * @ingroup lavu_hash
  34. * RIPEMD hash function implementation.
  35. *
  36. * @{
  37. */
  38. extern const int av_ripemd_size;
  39. struct AVRIPEMD;
  40. /**
  41. * Allocate an AVRIPEMD context.
  42. */
  43. struct AVRIPEMD *av_ripemd_alloc(void);
  44. /**
  45. * Initialize RIPEMD hashing.
  46. *
  47. * @param context pointer to the function context (of size av_ripemd_size)
  48. * @param bits number of bits in digest (128, 160, 256 or 320 bits)
  49. * @return zero if initialization succeeded, -1 otherwise
  50. */
  51. int av_ripemd_init(struct AVRIPEMD* context, int bits);
  52. /**
  53. * Update hash value.
  54. *
  55. * @param context hash function context
  56. * @param data input data to update hash with
  57. * @param len input data length
  58. */
  59. #if FF_API_CRYPTO_SIZE_T
  60. void av_ripemd_update(struct AVRIPEMD* context, const uint8_t* data, unsigned int len);
  61. #else
  62. void av_ripemd_update(struct AVRIPEMD* context, const uint8_t* data, size_t len);
  63. #endif
  64. /**
  65. * Finish hashing and output digest value.
  66. *
  67. * @param context hash function context
  68. * @param digest buffer where output digest value is stored
  69. */
  70. void av_ripemd_final(struct AVRIPEMD* context, uint8_t *digest);
  71. /**
  72. * @}
  73. */
  74. #endif /* AVUTIL_RIPEMD_H */