Skip to content

Authentication plugin for MySQL/MariaDB for authentication with bcrypt hashes.

Notifications You must be signed in to change notification settings

Limpan/bcrypt_auth_plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Authenticate MySQL/MariaDB users with bcrypt hashed passwords

Build with make and install with make install (as root).

To load the plugin in MySQL or MariaDB, run the following command.

INSTALL SONAME 'auth_bcrypt.h';

The following command adds an user that authenticates with the plugin.

CREATE USER <name>@'localhost' IDENTIFIED WITH bcrypt USING '<hash>';

Secure connections

Make sure to secure database connections with TLS since passwords are sent in clear text!

About

Authentication plugin for MySQL/MariaDB for authentication with bcrypt hashes.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published