diff options
-rw-r--r-- | includes/lib/account.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/lib/account.php b/includes/lib/account.php index f891b42..81bd59b 100644 --- a/includes/lib/account.php +++ b/includes/lib/account.php @@ -118,15 +118,15 @@ class HashAlgorithms { public static function getInfo() { return array( 'sha256' => array( - 'name' => 'SHA256', + 'name' => 'SHA-256', 'info' => _('Currently recommended, because the other algorithms might break on some older versions of the GnuTLS library (older than 3.x) still shipped in Debian for example.'), ), 'sha384' => array( - 'name' => 'SHA384', + 'name' => 'SHA-384', 'info' => '', ), 'sha512' => array( - 'name' => 'SHA512', + 'name' => 'SHA-512', 'info' => _('Highest protection against hash collision attacks of the algorithms offered here.'), ), ); |