Skip to content

Commit

Permalink
fix hash
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Oct 9, 2024
1 parent 32c218e commit 891a1a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/verify.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

return [
'validation' => [
ValidateHash::class => '5afdc7446da9009f2d95a02a216281544e14e79c',
ValidateHash::class => '283d910da171808f650011e41d5c23c743e90e39',
ValidateSignature::class => '71627830f8485d02dc48a59e2aa28cc9dea6fe3b',
Verify::class => 'b9e4048f3543734262582553d2202f9ef5d39b1f',
VerifySupporterStatus::class => '6358c45ed0414c1e2697e0881238659fa6221bed',
Expand Down
2 changes: 1 addition & 1 deletion src/Validators/ValidateHash.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ValidateHash implements Validator

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

/**
Expand Down
3 changes: 1 addition & 2 deletions tests/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ class Constants
public const VERIFIABLE = '"this is a test"';
public const HASH = '$2y$10$TBBCJeXOa10Y5WwLU.yeQ.4fQS/BujBknIvISyhlPzp.LU9jWIH2W';
public const HASH_KEY = 'BSIM4-MEVVQ-HVQKG-Q6VNT-KP3EZ';

public const EMAIL_TEST = '[email protected]';

public const LICENSE_JSON = 'MEUCIQCSxj5Oe1JoAgrR0lfa4UZksnjPBZjqhuJmRPupu1YJvwIgIRAcwM3r89tLYuO9DOcmOzOHLTX4hPw0FVKwZG8M/2I=';

// public const LICENSE_JSON = 'MEUCIQD3LMOIbvHu9Uj09nHfyBP+AK91SwW7nHxW6Uq+nx9X/wIgagXs8X2UCp9ISrFhpcTzMYXdakDHomU5PKpcTPQIR5o=';
}

0 comments on commit 891a1a2

Please sign in to comment.