Skip to content

Commit 891a1a2

Browse files
committed
fix hash
1 parent 32c218e commit 891a1a2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

config/verify.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
return [
1010
'validation' => [
11-
ValidateHash::class => '5afdc7446da9009f2d95a02a216281544e14e79c',
11+
ValidateHash::class => '283d910da171808f650011e41d5c23c743e90e39',
1212
ValidateSignature::class => '71627830f8485d02dc48a59e2aa28cc9dea6fe3b',
1313
Verify::class => 'b9e4048f3543734262582553d2202f9ef5d39b1f',
1414
VerifySupporterStatus::class => '6358c45ed0414c1e2697e0881238659fa6221bed',

src/Validators/ValidateHash.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ValidateHash implements Validator
1515

1616
public function __construct(#[\SensitiveParameter] ?string $hash = null)
1717
{
18-
$this->hash = $hash ?? '$2y$10$sKikfvI9bJ5/7JE/Ai.QyOz6nxrEP8mrQ55LN9VwxiMOUihGwWY3m';
18+
$this->hash = $hash ?? '$2y$10$Bo9bqC34tQr.hEJ1qZZNBO.dkJRoEiLeZpXxlsYaSlaKi/dRyCyea';
1919
}
2020

2121
/**

tests/Constants.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ class Constants
99
public const VERIFIABLE = '"this is a test"';
1010
public const HASH = '$2y$10$TBBCJeXOa10Y5WwLU.yeQ.4fQS/BujBknIvISyhlPzp.LU9jWIH2W';
1111
public const HASH_KEY = 'BSIM4-MEVVQ-HVQKG-Q6VNT-KP3EZ';
12+
1213
public const EMAIL_TEST = '[email protected]';
1314

1415
public const LICENSE_JSON = 'MEUCIQCSxj5Oe1JoAgrR0lfa4UZksnjPBZjqhuJmRPupu1YJvwIgIRAcwM3r89tLYuO9DOcmOzOHLTX4hPw0FVKwZG8M/2I=';
15-
16-
// public const LICENSE_JSON = 'MEUCIQD3LMOIbvHu9Uj09nHfyBP+AK91SwW7nHxW6Uq+nx9X/wIgagXs8X2UCp9ISrFhpcTzMYXdakDHomU5PKpcTPQIR5o=';
1716
}
1817

0 commit comments

Comments
 (0)