jAuthDriverBase.class.php
Tags
Interfaces, Classes and Traits
- jAuthDriverBase
- base class for some jAuth drivers
Table of Contents
- sha1WithSalt() : mixed
- function to use to crypt password. use the password_salt value in the config file of the plugin.
- bcrypt() : mixed
- hash password with blowfish algorithm. use the password_salt value in the config file of the plugin
Functions
sha1WithSalt()
function to use to crypt password. use the password_salt value in the config file of the plugin.
sha1WithSalt(mixed $salt, mixed $password) : mixed
Parameters
- $salt : mixed
- $password : mixed
Tags
Return values
mixed —bcrypt()
hash password with blowfish algorithm. use the password_salt value in the config file of the plugin
bcrypt(mixed $salt, mixed $password[, mixed $iteration_count = 12 ]) : mixed
Parameters
- $salt : mixed
- $password : mixed
- $iteration_count : mixed = 12