sizehash.h 751 B

123456789101112131415161718192021
  1. /*
  2. ---------------------------------------------------------------------------
  3. Copyright (c) 2003, Dominik Reichl <dominik.reichl@t-online.de>, Germany.
  4. All rights reserved.
  5. Distributed under the terms of the GNU General Public License v2.
  6. This software is provided 'as is' with no explicit or implied warranties
  7. in respect of its properties, including, but not limited to, correctness
  8. and/or fitness for purpose.
  9. ---------------------------------------------------------------------------
  10. */
  11. #ifndef ___SIZEHASH_H___
  12. #define ___SIZEHASH_H___
  13. void sizehash32_begin(unsigned long *uHashCtx);
  14. void sizehash32_hash(unsigned long *uHashCtx, unsigned long uBufferLen);
  15. void sizehash32_end(unsigned long *uHashCtx);
  16. #endif // ___SIZEHASH_H___