sha512.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. #ifndef AVUTIL_SHA512_H
  22. #define AVUTIL_SHA512_H
  23. #include <stdint.h>
  24. #include "attributes.h"
  25. #include "version.h"
  26. /**
  27. * @defgroup lavu_sha512 SHA512
  28. * @ingroup lavu_crypto
  29. * @{
  30. */
  31. extern const int av_sha512_size;
  32. struct AVSHA512;
  33. /**
  34. * Allocate an AVSHA512 context.
  35. */
  36. struct AVSHA512 *av_sha512_alloc(void);
  37. /**
  38. * Initialize SHA-2 512 hashing.
  39. *
  40. * @param context pointer to the function context (of size av_sha512_size)
  41. * @param bits number of bits in digest (224, 256, 384 or 512 bits)
  42. * @return zero if initialization succeeded, -1 otherwise
  43. */
  44. int av_sha512_init(struct AVSHA512* context, int bits);
  45. /**
  46. * Update hash value.
  47. *
  48. * @param context hash function context
  49. * @param data input data to update hash with
  50. * @param len input data length
  51. */
  52. void av_sha512_update(struct AVSHA512* context, const uint8_t* data, unsigned int len);
  53. /**
  54. * Finish hashing and output digest value.
  55. *
  56. * @param context hash function context
  57. * @param digest buffer where output digest value is stored
  58. */
  59. void av_sha512_final(struct AVSHA512* context, uint8_t *digest);
  60. /**
  61. * @}
  62. */
  63. #endif /* AVUTIL_SHA512_H */