php_password.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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: Anthony Ferrara <ircmaxell@php.net> |
  16. | Charles R. Portwood II <charlesportwoodii@erianna.com> |
  17. +----------------------------------------------------------------------+
  18. */
  19. #ifndef PHP_PASSWORD_H
  20. #define PHP_PASSWORD_H
  21. PHP_FUNCTION(password_hash);
  22. PHP_FUNCTION(password_verify);
  23. PHP_FUNCTION(password_needs_rehash);
  24. PHP_FUNCTION(password_get_info);
  25. PHP_MINIT_FUNCTION(password);
  26. #define PHP_PASSWORD_DEFAULT PHP_PASSWORD_BCRYPT
  27. #define PHP_PASSWORD_BCRYPT_COST 10
  28. #if HAVE_ARGON2LIB
  29. #define PHP_PASSWORD_ARGON2_MEMORY_COST (64 << 10)
  30. #define PHP_PASSWORD_ARGON2_TIME_COST 4
  31. #define PHP_PASSWORD_ARGON2_THREADS 1
  32. #endif
  33. typedef enum {
  34. PHP_PASSWORD_UNKNOWN,
  35. PHP_PASSWORD_BCRYPT,
  36. #if HAVE_ARGON2LIB
  37. PHP_PASSWORD_ARGON2I,
  38. PHP_PASSWORD_ARGON2ID,
  39. #endif
  40. } php_password_algo;
  41. #endif
  42. /*
  43. * Local variables:
  44. * tab-width: 4
  45. * c-basic-offset: 4
  46. * End:
  47. */