diff --git a/config/verify.php b/config/verify.php index c5a340b..3126963 100644 --- a/config/verify.php +++ b/config/verify.php @@ -8,7 +8,7 @@ return [ 'validation' => [ - ValidateHash::class => '5afdc7446da9009f2d95a02a216281544e14e79c', + ValidateHash::class => '283d910da171808f650011e41d5c23c743e90e39', ValidateSignature::class => '71627830f8485d02dc48a59e2aa28cc9dea6fe3b', Verify::class => 'b9e4048f3543734262582553d2202f9ef5d39b1f', VerifySupporterStatus::class => '6358c45ed0414c1e2697e0881238659fa6221bed', diff --git a/src/Validators/ValidateHash.php b/src/Validators/ValidateHash.php index 9ba5fff..ba98198 100644 --- a/src/Validators/ValidateHash.php +++ b/src/Validators/ValidateHash.php @@ -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'; } /** diff --git a/tests/Constants.php b/tests/Constants.php index 7c00bbd..60e5c99 100644 --- a/tests/Constants.php +++ b/tests/Constants.php @@ -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 = 'test@example.com'; public const LICENSE_JSON = 'MEUCIQCSxj5Oe1JoAgrR0lfa4UZksnjPBZjqhuJmRPupu1YJvwIgIRAcwM3r89tLYuO9DOcmOzOHLTX4hPw0FVKwZG8M/2I='; - - // public const LICENSE_JSON = 'MEUCIQD3LMOIbvHu9Uj09nHfyBP+AK91SwW7nHxW6Uq+nx9X/wIgagXs8X2UCp9ISrFhpcTzMYXdakDHomU5PKpcTPQIR5o='; }