php_crypt_r.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 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. | Authors: Pierre Alain Joye <pajoye@php.net |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef _CRYPT_WIHN32_H_
  19. #define _CRYPT_WIHN32_H_
  20. #ifdef __cplusplus
  21. extern "C"
  22. {
  23. #endif
  24. #include "crypt_freesec.h"
  25. #ifndef __const
  26. #ifdef __GNUC__
  27. #define __CONST __const
  28. #else
  29. #define __CONST
  30. #endif
  31. #else
  32. #define __CONST __const
  33. #endif
  34. void php_init_crypt_r();
  35. void php_shutdown_crypt_r();
  36. extern void _crypt_extended_init_r(void);
  37. /*PHPAPI char* crypt(const char *key, const char *salt);*/
  38. PHPAPI char *php_crypt_r (const char *__key, const char *__salt, struct php_crypt_extended_data * __data);
  39. #define MD5_HASH_MAX_LEN 120
  40. #include "crypt_blowfish.h"
  41. extern char * php_md5_crypt_r(const char *pw, const char *salt, char *out);
  42. extern char * php_sha512_crypt_r (const char *key, const char *salt, char *buffer, int buflen);
  43. extern char * php_sha256_crypt_r (const char *key, const char *salt, char *buffer, int buflen);
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47. #endif /* _CRYPT_WIHN32_H_ */