Skip to content

Commit 2ca68ed

Browse files
Spomkygitbook-bot
Spomky
authored andcommitted
GitBook: [v1.x] 3 pages modified
1 parent d0db9cb commit 2ca68ed

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

advanced-topics/nested-tokens.md

-2
Original file line numberDiff line numberDiff line change
@@ -122,5 +122,3 @@ class AcmeExtension extends Extension implements PrependExtensionInterface
122122
}
123123
```
124124

125-
126-

components/encrypted-tokens-jwe/encryption-algorithms.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ This framework comes with several encryption algorithms. These algorithms are in
55
* `Jose\Component\Encryption\Algorithm\KeyEncryption`: key encryption algorithms
66
* `Jose\Component\Encryption\Algorithm\ContentEncryption`: content encryption algorithms
77

8-
_From v1.2, the algorithms have their own sub-packages. To avoid BC breaks, these packages are automatically installed for all v1.x of the framework. Starting at v2.0, you will have to explicitly install the algorithm packages you need._
8+
_From v1.2, the algorithms have their own sub-packages. To avoid BC breaks, these packages are automatically installed for all v1.x of the framework. Starting at v2.0, you will have to explicitly install the algorithm packages you need._
99

1010
* Key Encryption
11-
* Package `web-token/jwt-encryption-algorithm-aeskw`
11+
* Package `web-token/jwt-encryption-algorithm-aeskw`
1212
* `A128KW`
1313
* `A192KW`
1414
* `A256KW`
15-
* Package `web-token/jwt-encryption-algorithm-aesgcmkw`
15+
* Package `web-token/jwt-encryption-algorithm-aesgcmkw`
1616
* `A128GCMKW`
1717
* `A192GCMKW`
1818
* `A256GCMKW`
@@ -31,9 +31,6 @@ This framework comes with several encryption algorithms. These algorithms are in
3131
* `RSA1_5` \(class `RSA15`\) **READ THE NOTE BELOW**
3232
* `RSA-OAEP` \(class `RSAOAEP`\)
3333
* `RSA-OAEP-256` \(class `RSAOAEP256`\)
34-
35-
36-
3734
* Content Encryption
3835
* Package `web-token/jwt-encryption-algorithm-aesgcm`
3936
* `A128GCM`

components/signed-tokens-jws/jws-creation.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ $token = $serializer->serialize($jws, 0); // We serialize the signature at index
6666
```
6767

6868
All good! The variable `$token` now contains a string that should be something like this:
69-
```
69+
70+
```text
7071
eyJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1MDc4OTY5OTIsIm5iZiI6MTUwNzg5Njk5MiwiZXhwIjoxNTA3OTAwNTkyLCJpc3MiOiJNeSBzZXJ2aWNlIiwiYXVkIjoiWW91ciBhcHBsaWNhdGlvbiJ9.eycp9PTdgO4WA-68-AMoHPwsKDr68NhjIQKz4lUkiI0
7172
```
7273

0 commit comments

Comments
 (0)