Umherirrender has uploaded a new change for review. https://gerrit.wikimedia.org/r/170302
Change subject: Split doc for $wgHKDFSecret/$wgHKDFAlgorithm in DefaultSettings.php ...................................................................... Split doc for $wgHKDFSecret/$wgHKDFAlgorithm in DefaultSettings.php Each variable should have it own doc block. Change-Id: Ided1073fddc17e80ddbc556c5f88c422d77cf120 --- M includes/DefaultSettings.php 1 file changed, 9 insertions(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core refs/changes/02/170302/1 diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index cfc8438..29d653d 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -7297,13 +7297,21 @@ $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'; /** -- To view, visit https://gerrit.wikimedia.org/r/170302 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ided1073fddc17e80ddbc556c5f88c422d77cf120 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: Umherirrender <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
