From: Hypolite Petovan Date: Fri, 11 Oct 2019 23:57:04 +0000 (-0400) Subject: Fix typo in Core\Authentication X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=001c9ed259530aece1c2a1ff3d58936b2cb82007;p=friendica.git Fix typo in Core\Authentication --- diff --git a/src/Core/Authentication.php b/src/Core/Authentication.php index fd34dbc887..d67a67bba5 100644 --- a/src/Core/Authentication.php +++ b/src/Core/Authentication.php @@ -27,7 +27,7 @@ class Authentication extends BaseObject { return hash_hmac( "sha256", - hash_hmac("sha256", $user["password"], $user["privkey"]), + hash_hmac("sha256", $user["password"], $user["prvkey"]), Config::get("system", "site_prvkey") ); }