php_hash_haval.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Sara Golemon <pollita@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef PHP_HASH_HAVAL_H
  20. #define PHP_HASH_HAVAL_H
  21. #include "ext/standard/basic_functions.h"
  22. /* HAVAL context. */
  23. typedef struct {
  24. php_hash_uint32 state[8];
  25. php_hash_uint32 count[2];
  26. unsigned char buffer[128];
  27. char passes;
  28. short output;
  29. void (*Transform)(php_hash_uint32 state[8], const unsigned char block[128]);
  30. } PHP_HAVAL_CTX;
  31. #define PHP_HASH_HAVAL_INIT_DECL(p,b) PHP_HASH_API void PHP_##p##HAVAL##b##Init(PHP_HAVAL_CTX *); \
  32. PHP_HASH_API void PHP_HAVAL##b##Final(unsigned char*, PHP_HAVAL_CTX *);
  33. PHP_HASH_API void PHP_HAVALUpdate(PHP_HAVAL_CTX *, const unsigned char *, unsigned int);
  34. PHP_HASH_HAVAL_INIT_DECL(3,128)
  35. PHP_HASH_HAVAL_INIT_DECL(3,160)
  36. PHP_HASH_HAVAL_INIT_DECL(3,192)
  37. PHP_HASH_HAVAL_INIT_DECL(3,224)
  38. PHP_HASH_HAVAL_INIT_DECL(3,256)
  39. PHP_HASH_HAVAL_INIT_DECL(4,128)
  40. PHP_HASH_HAVAL_INIT_DECL(4,160)
  41. PHP_HASH_HAVAL_INIT_DECL(4,192)
  42. PHP_HASH_HAVAL_INIT_DECL(4,224)
  43. PHP_HASH_HAVAL_INIT_DECL(4,256)
  44. PHP_HASH_HAVAL_INIT_DECL(5,128)
  45. PHP_HASH_HAVAL_INIT_DECL(5,160)
  46. PHP_HASH_HAVAL_INIT_DECL(5,192)
  47. PHP_HASH_HAVAL_INIT_DECL(5,224)
  48. PHP_HASH_HAVAL_INIT_DECL(5,256)
  49. #endif