mysqlnd_auth.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2006-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: Andrey Hristov <andrey@php.net> |
  16. | Ulf Wendel <uw@php.net> |
  17. +----------------------------------------------------------------------+
  18. */
  19. #ifndef MYSQLND_AUTH_H
  20. #define MYSQLND_AUTH_H
  21. enum_func_status
  22. mysqlnd_auth_handshake(MYSQLND_CONN_DATA * conn,
  23. const char * const user,
  24. const char * const passwd,
  25. const size_t passwd_len,
  26. const char * const db,
  27. const size_t db_len,
  28. const MYSQLND_SESSION_OPTIONS * const session_options,
  29. zend_ulong mysql_flags,
  30. unsigned int server_charset_no,
  31. zend_bool use_full_blown_auth_packet,
  32. const char * const auth_protocol,
  33. const zend_uchar * const auth_plugin_data,
  34. const size_t auth_plugin_data_len,
  35. char ** switch_to_auth_protocol,
  36. size_t * switch_to_auth_protocol_len,
  37. zend_uchar ** switch_to_auth_protocol_data,
  38. size_t * switch_to_auth_protocol_data_len
  39. );
  40. enum_func_status
  41. mysqlnd_auth_handshake(MYSQLND_CONN_DATA * conn,
  42. const char * const user,
  43. const char * const passwd,
  44. const size_t passwd_len,
  45. const char * const db,
  46. const size_t db_len,
  47. const MYSQLND_SESSION_OPTIONS * const session_options,
  48. zend_ulong mysql_flags,
  49. unsigned int server_charset_no,
  50. zend_bool use_full_blown_auth_packet,
  51. const char * const auth_protocol,
  52. const zend_uchar * const auth_plugin_data,
  53. const size_t auth_plugin_data_len,
  54. char ** switch_to_auth_protocol,
  55. size_t * switch_to_auth_protocol_len,
  56. zend_uchar ** switch_to_auth_protocol_data,
  57. size_t * switch_to_auth_protocol_data_len
  58. );
  59. enum_func_status
  60. mysqlnd_auth_change_user(MYSQLND_CONN_DATA * const conn,
  61. const char * const user,
  62. const size_t user_len,
  63. const char * const passwd,
  64. const size_t passwd_len,
  65. const char * const db,
  66. const size_t db_len,
  67. const zend_bool silent,
  68. zend_bool use_full_blown_auth_packet,
  69. const char * const auth_protocol,
  70. zend_uchar * auth_plugin_data,
  71. size_t auth_plugin_data_len,
  72. char ** switch_to_auth_protocol,
  73. size_t * switch_to_auth_protocol_len,
  74. zend_uchar ** switch_to_auth_protocol_data,
  75. size_t * switch_to_auth_protocol_data_len
  76. );
  77. enum_func_status
  78. mysqlnd_connect_run_authentication(
  79. MYSQLND_CONN_DATA * conn,
  80. const char * const user,
  81. const char * const passwd,
  82. const char * const db,
  83. size_t db_len,
  84. size_t passwd_len,
  85. MYSQLND_STRING authentication_plugin_data,
  86. const char * const authentication_protocol,
  87. const unsigned int charset_no,
  88. size_t server_capabilities,
  89. const MYSQLND_SESSION_OPTIONS * const session_options,
  90. zend_ulong mysql_flags
  91. );
  92. enum_func_status
  93. mysqlnd_run_authentication(
  94. MYSQLND_CONN_DATA * conn,
  95. const char * const user,
  96. const char * const passwd,
  97. const size_t passwd_len,
  98. const char * const db,
  99. const size_t db_len,
  100. const MYSQLND_STRING auth_plugin_data,
  101. const char * const auth_protocol,
  102. unsigned int charset_no,
  103. const MYSQLND_SESSION_OPTIONS * const session_options,
  104. zend_ulong mysql_flags,
  105. zend_bool silent,
  106. zend_bool is_change_user
  107. );
  108. PHPAPI void php_mysqlnd_scramble(zend_uchar * const buffer, const zend_uchar * const scramble, const zend_uchar * const pass, const size_t pass_len);
  109. #endif /* MYSQLND_AUTH_H */
  110. /*
  111. * Local variables:
  112. * tab-width: 4
  113. * c-basic-offset: 4
  114. * End:
  115. * vim600: noet sw=4 ts=4 fdm=marker
  116. * vim<600: noet sw=4 ts=4
  117. */