0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

composer format

This commit is contained in:
David Goodwin 2021-09-29 18:34:54 +01:00
parent 309b4a84aa
commit f1b41e87fa

View File

@ -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);