@@ -546,7 +546,8 @@ If you haven't installed it yet, run this command:
546
546
$ composer require web-token/jwt-library
547
547
548
548
Symfony provides a generic ``OidcTokenHandler `` to decode your token, validate
549
- it and retrieve the user info from it:
549
+ it and retrieve the user info from it.
550
+ Optionally, the token may be encrypted (JWE):
550
551
551
552
.. configuration-block ::
552
553
@@ -567,6 +568,11 @@ it and retrieve the user info from it:
567
568
audience : ' api-example'
568
569
# Issuers (`iss` claim): required for validation purpose
569
570
issuers : ['https://oidc.example.com']
571
+ encryption :
572
+ enabled : true # Default to false
573
+ enforce : false # Default to false, requires an encrypted token when true
574
+ algorithms : ['ECDH-ES', 'A128GCM']
575
+ keyset : ' {"keys": [...]}' # Encryption private keyset
570
576
571
577
.. code-block :: xml
572
578
@@ -592,6 +598,10 @@ it and retrieve the user info from it:
592
598
<algorithm >ES256</algorithm >
593
599
<algorithm >RS256</algorithm >
594
600
<issuer >https://oidc.example.com</issuer >
601
+ <encryption enabled =" true" enforce =" true" keyset =" {'keys': [...]}" >
602
+ <algorithm >ECDH-ES</algorithm >
603
+ <algorithm >A128GCM</algorithm >
604
+ </encryption >
595
605
</oidc >
596
606
</token-handler >
597
607
</access-token >
@@ -611,12 +621,20 @@ it and retrieve the user info from it:
611
621
->oidc()
612
622
// Algorithm used to sign the JWS
613
623
->algorithms(['ES256', 'RS256'])
614
- // A JSON-encoded JWK
624
+ // A JSON-encoded JWKSet (public keys)
615
625
->keyset('{"keys":[{"kty":"...","k":"..."}]}')
616
626
// Audience (`aud` claim): required for validation purpose
617
627
->audience('api-example')
618
628
// Issuers (`iss` claim): required for validation purpose
619
629
->issuers(['https://oidc.example.com'])
630
+ ->encryption()
631
+ ->enabled(true) //Default to false
632
+ ->enforce(false) //Default to false, requires an encrypted token when true
633
+ // Algorithm used to decrypt the JWE
634
+ ->algorithms(['ECDH-ES', 'A128GCM'])
635
+ // A JSON-encoded JWKSet (private keys)
636
+ ->keyset('{"keys":[...]}')
637
+
620
638
;
621
639
};
622
640
@@ -625,6 +643,10 @@ it and retrieve the user info from it:
625
643
The support of multiple algorithms to sign the JWS was introduced in Symfony 7.1.
626
644
In previous versions, only the ``ES256 `` algorithm was supported.
627
645
646
+ .. versionadded :: 7.3
647
+
648
+ The support of the encryption algorithms to decrypt the JWE was introduced in Symfony 7.3.
649
+
628
650
Following the `OpenID Connect Specification `_, the ``sub `` claim is used by
629
651
default as user identifier. To use another claim, specify it on the
630
652
configuration:
0 commit comments