diff options
author | Michael Tänzer <neo@nhng.de> | 2014-03-21 01:12:31 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-03-21 01:12:31 +0100 |
commit | d9f88e530a728c631f31ed01e113b084fb596c7b (patch) | |
tree | 31bc8ec47002dae09529c07d24f45ae8803f0630 | |
parent | 476202723d3cacef2d9ebe244bc3210cd14e46fc (diff) | |
parent | 57ba86ff84eb3dcc15f8122b29efeae54434652e (diff) | |
download | cacert-devel-d9f88e530a728c631f31ed01e113b084fb596c7b.tar.gz cacert-devel-d9f88e530a728c631f31ed01e113b084fb596c7b.tar.xz cacert-devel-d9f88e530a728c631f31ed01e113b084fb596c7b.zip |
Merge branch 'bug-807' into testserver-stable
-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.'), ), ); |