From f6831c82afdce2f024fc9d044864f37b33e14440 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Sun, 17 Sep 2023 10:56:14 +0200 Subject: [PATCH] Remove opinionated comments on hash algorithms --- includes/lib/account.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/lib/account.php b/includes/lib/account.php index dd8afd3..131f9d5 100644 --- a/includes/lib/account.php +++ b/includes/lib/account.php @@ -120,7 +120,7 @@ class HashAlgorithms { return array( 'sha256' => array( '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.'), + 'info' => '', ), 'sha384' => array( 'name' => 'SHA-384', @@ -128,7 +128,7 @@ class HashAlgorithms { ), 'sha512' => array( 'name' => 'SHA-512', - 'info' => _('Highest protection against hash collision attacks of the algorithms offered here.'), + 'info' => '', ), ); }