From 797ac8f8ae08d448f3d1075b667a385462179bf6 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Fri, 31 Oct 2014 11:54:44 +0100 Subject: [PATCH] Split doc for $wgHKDFSecret/$wgHKDFAlgorithm in DefaultSettings.php Each variable should have it own doc block. Change-Id: Ided1073fddc17e80ddbc556c5f88c422d77cf120 --- includes/DefaultSettings.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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'; /** -- 2.20.1