You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-07-31 10:04:20 +03:00
composer format
This commit is contained in:
@ -1310,22 +1310,22 @@ function pacrypt($pw, $pw_db = "")
|
||||
$mechanism = 'SHA512-CRYPT';
|
||||
}
|
||||
|
||||
if($mechanism == 'SHA512.B64') {
|
||||
if ($mechanism == 'SHA512.B64') {
|
||||
$mechanism = 'SHA512-CRYPT.B64';
|
||||
}
|
||||
|
||||
if(preg_match('/^DOVECOT:(.*)$/i', $mechanism, $matches)) {
|
||||
if (preg_match('/^DOVECOT:(.*)$/i', $mechanism, $matches)) {
|
||||
$mechanism = strtoupper($matches[1]);
|
||||
}
|
||||
|
||||
if(preg_match('/^COURIER:(.*)$/i', $mechanism, $matches)) {
|
||||
if (preg_match('/^COURIER:(.*)$/i', $mechanism, $matches)) {
|
||||
$mechanism = strtoupper($mechanism);
|
||||
}
|
||||
if (empty($pw_db)) {
|
||||
$pw_db = null;
|
||||
}
|
||||
|
||||
if($mechanism == 'AUTHLIB') {
|
||||
if ($mechanism == 'AUTHLIB') {
|
||||
return _pacrypt_authlib($pw, $pw_db);
|
||||
}
|
||||
$hasher = new \PostfixAdmin\PasswordHashing\Crypt($mechanism);
|
||||
|
Reference in New Issue
Block a user