SM0 She11
Path:
/
/
usr
/
include
/
mysql
/
server
/
mysql
Full Path (server): /usr/include/mysql/server/mysql
Create Fil3
Upl04d Fil3
📄 auth_dialog_client.h
[E]
[D]
[R]
📄 client_plugin.h
[E]
[D]
[R]
📄 plugin.h
[E]
[D]
[R]
📄 plugin_audit.h
[E]
[D]
[R]
📄 plugin_auth.h
[E]
[D]
[R]
📄 plugin_auth_common.h
[E]
[D]
[R]
📄 plugin_encryption.h
[E]
[D]
[R]
📄 plugin_ftparser.h
[E]
[D]
[R]
📄 plugin_password_validation.h
[E]
[D]
[R]
📁 psi
Open
[D]
[R]
📄 service_base64.h
[E]
[D]
[R]
📄 service_debug_sync.h
[E]
[D]
[R]
📄 service_encryption.h
[E]
[D]
[R]
📄 service_encryption_scheme.h
[E]
[D]
[R]
📄 service_kill_statement.h
[E]
[D]
[R]
📄 service_logger.h
[E]
[D]
[R]
📄 service_md5.h
[E]
[D]
[R]
📄 service_my_crypt.h
[E]
[D]
[R]
📄 service_my_print_error.h
[E]
[D]
[R]
📄 service_my_snprintf.h
[E]
[D]
[R]
📄 service_progress_report.h
[E]
[D]
[R]
📄 service_sha1.h
[E]
[D]
[R]
📄 service_sha2.h
[E]
[D]
[R]
📄 service_thd_alloc.h
[E]
[D]
[R]
📄 service_thd_autoinc.h
[E]
[D]
[R]
📄 service_thd_error_context.h
[E]
[D]
[R]
📄 service_thd_rnd.h
[E]
[D]
[R]
📄 service_thd_specifics.h
[E]
[D]
[R]
📄 service_thd_timezone.h
[E]
[D]
[R]
📄 service_thd_wait.h
[E]
[D]
[R]
📄 service_wsrep.h
[E]
[D]
[R]
📄 services.h
[E]
[D]
[R]
Editing: plugin_password_validation.h
#ifndef MYSQL_PLUGIN_PASSWORD_VALIDATION_INCLUDED /* Copyright (C) 2014 Sergei Golubchik and MariaDB This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA */ /** @file Password Validation Plugin API. This file defines the API for server password validation plugins. */ #define MYSQL_PLUGIN_PASSWORD_VALIDATION_INCLUDED #include <mysql/plugin.h> #ifdef __cplusplus extern "C" { #endif #define MariaDB_PASSWORD_VALIDATION_INTERFACE_VERSION 0x0100 /** Password validation plugin descriptor */ struct st_mariadb_password_validation { int interface_version; /**< version plugin uses */ /** Function provided by the plugin which should perform password validation and return 0 if the password has passed the validation. */ int (*validate_password)(MYSQL_LEX_STRING *username, MYSQL_LEX_STRING *password); }; #ifdef __cplusplus } #endif #endif
Save