X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FSigner.php;h=6323b8931d7d7db0979f10475ea568e50346fb92;hb=73e57781380c5e928082d48d3a7e61ed1f339f78;hp=3d62bf56518c591e947521a2db7a5708496f25d3;hpb=558bcc42deda03e8e059c97a1007d5e1deaa2bd4;p=civicrm-core.git diff --git a/CRM/Utils/Signer.php b/CRM/Utils/Signer.php index 3d62bf5651..6323b8931d 100644 --- a/CRM/Utils/Signer.php +++ b/CRM/Utils/Signer.php @@ -64,10 +64,12 @@ class CRM_Utils_Signer { * Array, fields which should be part of the signature. */ public function __construct($secret, $paramNames) { - sort($paramNames); // ensure consistent serialization of payloads + // ensure consistent serialization of payloads + sort($paramNames); $this->secret = $secret; $this->paramNames = $paramNames; - $this->signDelim = "_"; // chosen to be valid in URLs but not in salt or md5 + // chosen to be valid in URLs but not in salt or md5 + $this->signDelim = "_"; $this->defaultSalt = CRM_Utils_String::createRandom(self::SALT_LEN, CRM_Utils_String::ALPHANUMERIC); } @@ -81,9 +83,9 @@ class CRM_Utils_Signer { * @return string, the full public token representing the signature */ public function sign($params, $salt = NULL) { - $message = array(); + $message = []; $message['secret'] = $this->secret; - $message['payload'] = array(); + $message['payload'] = []; if (empty($salt)) { $message['salt'] = $this->createSalt(); }