/home/techb158/ileadtechnology.com/vendor/lcobucci/jwt/src/Validation/Constraint
NameSizeModeActions
IdentifiedBy.php6030644editdlrm
IssuedBy.php6410644editdlrm
LeewayCannotBeNegative.php3320644editdlrm
PermittedFor.php6090644editdlrm
RelatedTo.php5930644editdlrm
SignedWith.php8710644editdlrm
ValidAt.php19360644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/lcobucci/jwt/src/Validation/Constraint/SignedWith.php (871B)
signer = $signer; $this->key = $key; } public function assert(Token $token) { if ($token->headers()->get('alg') !== $this->signer->getAlgorithmId()) { throw new ConstraintViolation('Token signer mismatch'); } if (! $this->signer->verify((string) $token->signature(), $token->getPayload(), $this->key)) { throw new ConstraintViolation('Token signature mismatch'); } } }