From: umherirrender Date: Fri, 31 Oct 2014 10:54:44 +0000 (+0100) Subject: Split doc for $wgHKDFSecret/$wgHKDFAlgorithm in DefaultSettings.php X-Git-Tag: 1.31.0-rc.0~13409^2 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=797ac8f8ae08d448f3d1075b667a385462179bf6;p=lhc%2Fweb%2Fwiklou.git Split doc for $wgHKDFSecret/$wgHKDFAlgorithm in DefaultSettings.php Each variable should have it own doc block. Change-Id: Ided1073fddc17e80ddbc556c5f88c422d77cf120 --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index cfc84389ad..29d653da24 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -7297,13 +7297,21 @@ $wgPagePropsHaveSortkey = true; $wgHttpsPort = 443; /** - * Secret and algorithm for hmac-based key derivation function (fast, + * Secret for hmac-based key derivation function (fast, * cryptographically secure random numbers). * This should be set in LocalSettings.php, otherwise wgSecretKey will * be used. + * See also: $wgHKDFAlgorithm * @since 1.24 */ $wgHKDFSecret = false; + +/** + * Algorithm for hmac-based key derivation function (fast, + * cryptographically secure random numbers). + * See also: $wgHKDFSecret + * @since 1.24 + */ $wgHKDFAlgorithm = 'sha256'; /**