-
-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a way to verify a token against multiple algorithms/keys
When dealing with key rotations, we will likely have to verify previously issued tokens (signed with the old key) and new tokens (signed with the new key). This introduces a handy constraint that can take multiple `SignedWith` constraints and only raise exceptions when the signature can't be validated by any of them. Signed-off-by: Luís Cobucci <[email protected]>
- Loading branch information
Showing
6 changed files
with
340 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Lcobucci\JWT\Validation\Constraint; | ||
|
||
use Lcobucci\JWT\Token; | ||
use Lcobucci\JWT\Validation\ConstraintViolation; | ||
use Lcobucci\JWT\Validation\SignedWith as SignedWithInterface; | ||
|
||
use const PHP_EOL; | ||
|
||
final class SignedWithOneInSet implements SignedWithInterface | ||
{ | ||
/** @var array<SignedWithUntilDate> */ | ||
private readonly array $constraints; | ||
|
||
public function __construct(SignedWithUntilDate ...$constraints) | ||
{ | ||
$this->constraints = $constraints; | ||
} | ||
|
||
public function assert(Token $token): void | ||
{ | ||
$errorMessage = 'It was not possible to verify the signature of the token, reasons:'; | ||
|
||
foreach ($this->constraints as $constraint) { | ||
try { | ||
$constraint->assert($token); | ||
|
||
return; | ||
} catch (ConstraintViolation $violation) { | ||
$errorMessage .= PHP_EOL . '- ' . $violation->getMessage(); | ||
} | ||
} | ||
|
||
throw ConstraintViolation::error($errorMessage, $this); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Lcobucci\JWT\Validation\Constraint; | ||
|
||
use DateTimeImmutable; | ||
use DateTimeInterface; | ||
use Lcobucci\JWT\Signer; | ||
use Lcobucci\JWT\Token; | ||
use Lcobucci\JWT\Validation\ConstraintViolation; | ||
use Lcobucci\JWT\Validation\SignedWith as SignedWithInterface; | ||
use Psr\Clock\ClockInterface; | ||
|
||
final class SignedWithUntilDate implements SignedWithInterface | ||
{ | ||
private readonly SignedWith $verifySignature; | ||
private readonly ClockInterface $clock; | ||
|
||
public function __construct( | ||
Signer $signer, | ||
Signer\Key $key, | ||
private readonly DateTimeImmutable $validUntil, | ||
?ClockInterface $clock = null, | ||
) { | ||
$this->verifySignature = new SignedWith($signer, $key); | ||
|
||
$this->clock = $clock ?? new class () implements ClockInterface { | ||
public function now(): DateTimeImmutable | ||
{ | ||
return new DateTimeImmutable(); | ||
} | ||
}; | ||
} | ||
|
||
public function assert(Token $token): void | ||
{ | ||
if ($this->validUntil < $this->clock->now()) { | ||
throw ConstraintViolation::error( | ||
'This constraint was only usable until ' | ||
. $this->validUntil->format(DateTimeInterface::RFC3339), | ||
$this, | ||
); | ||
} | ||
|
||
$this->verifySignature->assert($token); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Lcobucci\JWT\Tests\Validation\Constraint; | ||
|
||
use DateTimeImmutable; | ||
use Lcobucci\Clock\FrozenClock; | ||
use Lcobucci\JWT\Encoding\ChainedFormatter; | ||
use Lcobucci\JWT\Encoding\JoseEncoder; | ||
use Lcobucci\JWT\Encoding\UnifyAudience; | ||
use Lcobucci\JWT\Encoding\UnixTimestampDates; | ||
use Lcobucci\JWT\JwtFacade; | ||
use Lcobucci\JWT\Signer\Key\InMemory; | ||
use Lcobucci\JWT\SodiumBase64Polyfill; | ||
use Lcobucci\JWT\Tests\Signer\FakeSigner; | ||
use Lcobucci\JWT\Token\Builder; | ||
use Lcobucci\JWT\Token\DataSet; | ||
use Lcobucci\JWT\Token\Parser; | ||
use Lcobucci\JWT\Token\Plain; | ||
use Lcobucci\JWT\Token\Signature; | ||
use Lcobucci\JWT\Validation\Constraint\SignedWith; | ||
use Lcobucci\JWT\Validation\Constraint\SignedWithOneInSet; | ||
use Lcobucci\JWT\Validation\Constraint\SignedWithUntilDate; | ||
use Lcobucci\JWT\Validation\ConstraintViolation; | ||
use PHPUnit\Framework\Attributes as PHPUnit; | ||
|
||
use const PHP_EOL; | ||
|
||
#[PHPUnit\CoversClass(SignedWithOneInSet::class)] | ||
#[PHPUnit\CoversClass(SignedWithUntilDate::class)] | ||
#[PHPUnit\CoversClass(SignedWith::class)] | ||
#[PHPUnit\CoversClass(ConstraintViolation::class)] | ||
#[PHPUnit\UsesClass(InMemory::class)] | ||
#[PHPUnit\UsesClass(JwtFacade::class)] | ||
#[PHPUnit\UsesClass(ChainedFormatter::class)] | ||
#[PHPUnit\UsesClass(JoseEncoder::class)] | ||
#[PHPUnit\UsesClass(UnifyAudience::class)] | ||
#[PHPUnit\UsesClass(UnixTimestampDates::class)] | ||
#[PHPUnit\UsesClass(SodiumBase64Polyfill::class)] | ||
#[PHPUnit\UsesClass(Builder::class)] | ||
#[PHPUnit\UsesClass(DataSet::class)] | ||
#[PHPUnit\UsesClass(Plain::class)] | ||
#[PHPUnit\UsesClass(Signature::class)] | ||
#[PHPUnit\UsesClass(Parser::class)] | ||
final class SignedWithOneInSetTest extends ConstraintTestCase | ||
{ | ||
#[PHPUnit\Test] | ||
public function exceptionShouldBeRaisedWhenSignatureIsNotVerifiedByAllConstraints(): void | ||
{ | ||
$clock = new FrozenClock(new DateTimeImmutable('2023-11-19 22:20:00')); | ||
$signer = new FakeSigner('123'); | ||
|
||
$constraint = new SignedWithOneInSet( | ||
new SignedWithUntilDate($signer, InMemory::plainText('b'), $clock->now(), $clock), | ||
new SignedWithUntilDate($signer, InMemory::plainText('c'), $clock->now()->modify('-2 minutes'), $clock), | ||
); | ||
|
||
$this->expectException(ConstraintViolation::class); | ||
$this->expectExceptionMessage( | ||
'It was not possible to verify the signature of the token, reasons:' | ||
. PHP_EOL . '- Token signature mismatch' | ||
. PHP_EOL . '- This constraint was only usable until 2023-11-19T22:18:00+00:00', | ||
); | ||
|
||
$token = $this->issueToken($signer, InMemory::plainText('a')); | ||
$constraint->assert($token); | ||
} | ||
|
||
#[PHPUnit\Test] | ||
public function assertShouldNotRaiseExceptionsWhenSignatureIsVerifiedByAtLeastOneConstraint(): void | ||
{ | ||
$clock = new FrozenClock(new DateTimeImmutable('2023-11-19 22:20:00')); | ||
$signer = new FakeSigner('123'); | ||
|
||
$constraint = new SignedWithOneInSet( | ||
new SignedWithUntilDate($signer, InMemory::plainText('b'), $clock->now(), $clock), | ||
new SignedWithUntilDate($signer, InMemory::plainText('c'), $clock->now()->modify('-2 minutes'), $clock), | ||
new SignedWithUntilDate($signer, InMemory::plainText('a'), $clock->now(), $clock), | ||
); | ||
|
||
$token = $this->issueToken($signer, InMemory::plainText('a')); | ||
$constraint->assert($token); | ||
|
||
$this->addToAssertionCount(1); | ||
} | ||
} |
Oops, something went wrong.