Browse Source

Check that php was compiled with argon2 support or that the php-sodium

extensions is installed

Signed-off-by: Carl Schwan <carl@carlschwan.eu>
pull/28259/head
Carl Schwan 4 years ago
parent
commit
8e51a5feda
No known key found for this signature in database GPG Key ID: 6B35D38387B67BE
  1. 4
      apps/settings/lib/Controller/CheckSetupController.php

4
apps/settings/lib/Controller/CheckSetupController.php

@ -627,6 +627,10 @@ Raw output
}
}
if (!defined('PASSWORD_ARGON2I')) {
$recommendedPHPModules[] = 'sodium';
}
return $recommendedPHPModules;
}

Loading…
Cancel
Save