Server : Apache System : Linux host44.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 User : vapecompany ( 2719) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/vapecompany/demo.vapecompany.com.bd/vendor/opis/closure/src/ |
Upload File : |
<?php /* =========================================================================== * Copyright (c) 2018-2021 Zindex Software * * Licensed under the MIT License * =========================================================================== */ namespace Opis\Closure; class SecurityProvider implements ISecurityProvider { /** @var string */ protected $secret; /** * SecurityProvider constructor. * @param string $secret */ public function __construct($secret) { $this->secret = $secret; } /** * @inheritdoc */ public function sign($closure) { return array( 'closure' => $closure, 'hash' => base64_encode(hash_hmac('sha256', $closure, $this->secret, true)), ); } /** * @inheritdoc */ public function verify(array $data) { return base64_encode(hash_hmac('sha256', $data['closure'], $this->secret, true)) === $data['hash']; } }