Server IP : 150.95.80.236 / Your IP : 18.117.104.53 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/api-uat.pcu.in.th/node_modules/mysql2/typings/mysql/lib/ |
Upload File : |
import { RsaPublicKey, RsaPrivateKey, KeyLike } from 'crypto'; import { Connection } from './Connection.js'; export type AuthPlugin = (pluginMetadata: { connection: Connection; command: string; }) => ( pluginData: Buffer ) => Promise<string> | string | Buffer | Promise<Buffer> | null; type AuthPluginDefinition<T> = (pluginOptions?: T) => AuthPlugin; export const authPlugins: { caching_sha2_password: AuthPluginDefinition<{ overrideIsSecure?: boolean; serverPublicKey?: RsaPublicKey | RsaPrivateKey | KeyLike; jonServerPublicKey?: (data: Buffer) => void; }>; mysql_clear_password: AuthPluginDefinition<{ password?: string; }>; mysql_native_password: AuthPluginDefinition<{ password?: string; passwordSha1?: string; }>; sha256_password: AuthPluginDefinition<{ serverPublicKey?: RsaPublicKey | RsaPrivateKey | KeyLike; joinServerPublicKey?: (data: Buffer) => void; }>; };