/var/www/verywell.gr/server/delivery/node_modules/mysql2/lib/auth_plugins
NameSizeModeActions
caching_sha2_password.js31650644editdlrm
caching_sha2_password.md4110644editdlrm
index.js00644editdlrm
mysql_native_password.js8440644editdlrm
sha256_password.js16500644editdlrm
Edit: /var/www/verywell.gr/server/delivery/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md (411B)
## https://mysqlserverteam.com/mysql-8-0-4-new-default-authentication-plugin-caching_sha2_password/ ```js const mysql = require('mysql'); mysql.createConnection({ authPlugins: { caching_sha2_password: mysql.authPlugins.caching_sha2_password({ onServerPublikKey: function(key) { console.log(key); }, serverPublicKey: 'xxxyyy', overrideIsSecure: true // }) } }); ```