Skip to content

Commit b7966e2

Browse files
committed
fixes
1 parent 7289ef0 commit b7966e2

File tree

5 files changed

+35
-35
lines changed

5 files changed

+35
-35
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

introduction/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h2 id="when-should-you-use-json-web-tokens-">When should you use JSON Web Token
1616
<ul>
1717
<li><p><strong>Authentication</strong>: This is the typical scenario for using JWT, once the user is logged in, each subsequent request will include the JWT, allowing the user to access routes, services, and resources that are permitted with that token. Single Sign On is a feature that widely uses JWT nowadays, because of its small overhead and its ability to be easily used among systems of different domains.</p>
1818
</li>
19-
<li><p><strong>Information Exchange</strong>: JSON Web Tokens are a good way of securely transmitting information between parties, because as they can be signed, for example using a public/private key pair, you can be sure that the sender is who he says he is. Additionally, as the signature is calculated using the header and the payload, you can also verify that the content hasn&#39;t changed.</p>
19+
<li><p><strong>Information Exchange</strong>: JSON Web Tokens are a good way of securely transmitting information between parties, because as they can be signed, for example using public/private key pairs, you can be sure that the senders are who they say they are. Additionally, as the signature is calculated using the header and the payload, you can also verify that the content hasn&#39;t changed.</p>
2020
</li>
2121
</ul>
2222
<h2 id="which-is-the-json-web-token-structure-">Which is the JSON Web Token structure?</h2>

views/libraries/java.jade

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Java jose4j
1+
// Java Auth0
22
article.jwt-java.java.accordion(data-accordion)
33
.panel-heading(data-control)
44
img(src='/img/3.svg')
@@ -17,7 +17,7 @@ article.jwt-java.java.accordion(data-accordion)
1717
code iss
1818
| check
1919
p
20-
i.icon-budicon-500
20+
i.icon-budicon-501
2121
code sub
2222
| check
2323
p
@@ -29,15 +29,15 @@ article.jwt-java.java.accordion(data-accordion)
2929
code exp
3030
| check
3131
p
32-
i.icon-budicon-500
32+
i.icon-budicon-501
3333
code nbf
3434
| check
3535
p
36-
i.icon-budicon-500
36+
i.icon-budicon-501
3737
code iat
3838
| check
3939
p
40-
i.icon-budicon-500
40+
i.icon-budicon-501
4141
code jti
4242
| check
4343
.column
@@ -51,32 +51,34 @@ article.jwt-java.java.accordion(data-accordion)
5151
i.icon-budicon-500
5252
| HS512
5353
p
54-
i.icon-budicon-500
54+
i.icon-budicon-501
5555
| RS256
5656
p
57-
i.icon-budicon-500
57+
i.icon-budicon-501
5858
| RS384
5959
p
60-
i.icon-budicon-500
60+
i.icon-budicon-501
6161
| RS512
6262
p
63-
i.icon-budicon-500
63+
i.icon-budicon-501
6464
| ES256
6565
p
66-
i.icon-budicon-500
66+
i.icon-budicon-501
6767
| ES384
6868
p
69-
i.icon-budicon-500
69+
i.icon-budicon-501
7070
| ES512
7171

7272
.author-info
7373
.maintainer
74-
a(href='https://twitter.com/__b_c')
74+
a(href='https://github.com/auth0')
7575
i.icon-budicon-333(data-toggle='tooltip', title='', data-original-title='Maintainer')
76-
| __b_c
76+
| Auth0
77+
span.stars(data-repo='auth0/java-jwt', style='display: inline;')
78+
i.icon-budicon-466
7779
.repository
7880
i.icon-1392070209-icon-social-github
79-
a(href='https://bitbucket.org/b_c/jose4j') View Repo
81+
a(href='https://github.com/auth0/java-jwt') View Repo
8082

8183
.panel-footer
82-
code maven: org.bitbucket.b_c / jose4j / 0.4.4
84+
code maven: com.auth0 / java-jwt / 0.4

views/libraries/java2.jade

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Java Auth0
1+
// Java jose4j
22
article.jwt-java.java.accordion(data-accordion)
33
.panel-heading(data-control)
44
img(src='/img/3.svg')
@@ -17,7 +17,7 @@ article.jwt-java.java.accordion(data-accordion)
1717
code iss
1818
| check
1919
p
20-
i.icon-budicon-501
20+
i.icon-budicon-500
2121
code sub
2222
| check
2323
p
@@ -29,15 +29,15 @@ article.jwt-java.java.accordion(data-accordion)
2929
code exp
3030
| check
3131
p
32-
i.icon-budicon-501
32+
i.icon-budicon-500
3333
code nbf
3434
| check
3535
p
36-
i.icon-budicon-501
36+
i.icon-budicon-500
3737
code iat
3838
| check
3939
p
40-
i.icon-budicon-501
40+
i.icon-budicon-500
4141
code jti
4242
| check
4343
.column
@@ -51,34 +51,32 @@ article.jwt-java.java.accordion(data-accordion)
5151
i.icon-budicon-500
5252
| HS512
5353
p
54-
i.icon-budicon-501
54+
i.icon-budicon-500
5555
| RS256
5656
p
57-
i.icon-budicon-501
57+
i.icon-budicon-500
5858
| RS384
5959
p
60-
i.icon-budicon-501
60+
i.icon-budicon-500
6161
| RS512
6262
p
63-
i.icon-budicon-501
63+
i.icon-budicon-500
6464
| ES256
6565
p
66-
i.icon-budicon-501
66+
i.icon-budicon-500
6767
| ES384
6868
p
69-
i.icon-budicon-501
69+
i.icon-budicon-500
7070
| ES512
7171

7272
.author-info
7373
.maintainer
74-
a(href='https://github.com/auth0')
74+
a(href='https://twitter.com/__b_c')
7575
i.icon-budicon-333(data-toggle='tooltip', title='', data-original-title='Maintainer')
76-
| Auth0
77-
span.stars(data-repo='auth0/java-jwt', style='display: inline;')
78-
i.icon-budicon-466
76+
| __b_c
7977
.repository
8078
i.icon-1392070209-icon-social-github
81-
a(href='https://github.com/auth0/java-jwt') View Repo
79+
a(href='https://bitbucket.org/b_c/jose4j') View Repo
8280

8381
.panel-footer
84-
code maven: com.auth0 / java-jwt / 0.4
82+
code maven: org.bitbucket.b_c / jose4j / 0.4.4

views/md/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ There are some scenarios where JSON Web Tokens are useful:
1212

1313
- **Authentication**: This is the typical scenario for using JWT, once the user is logged in, each subsequent request will include the JWT, allowing the user to access routes, services, and resources that are permitted with that token. Single Sign On is a feature that widely uses JWT nowadays, because of its small overhead and its ability to be easily used among systems of different domains.
1414

15-
- **Information Exchange**: JSON Web Tokens are a good way of securely transmitting information between parties, because as they can be signed, for example using a public/private key pair, you can be sure that the sender is who they say they are. Additionally, as the signature is calculated using the header and the payload, you can also verify that the content hasn't changed.
15+
- **Information Exchange**: JSON Web Tokens are a good way of securely transmitting information between parties, because as they can be signed, for example using public/private key pairs, you can be sure that the senders are who they say they are. Additionally, as the signature is calculated using the header and the payload, you can also verify that the content hasn't changed.
1616

1717
## Which is the JSON Web Token structure?
1818
JSON Web Tokens consist of three parts separated by dots (`.`), which are:

0 commit comments

Comments
 (0)