Skip to content
This repository was archived by the owner on May 11, 2020. It is now read-only.

Commit 74e8398

Browse files
authored
Merge pull request jsonwebtoken#184 from mike-casas/fix-pr#148
Fixed conflict pr#148. added new library Crystal library
2 parents 75af62e + ab32924 commit 74e8398

File tree

4 files changed

+135
-0
lines changed

4 files changed

+135
-0
lines changed

img/21.svg

Lines changed: 46 additions & 0 deletions
Loading

stylus/app.styl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -701,6 +701,9 @@ body
701701
&.jwt-perl
702702
.panel-heading h3
703703
background-color #3B477A
704+
&.jwt-crystal
705+
.panel-heading h3
706+
background-color #B0B0B0
704707

705708

706709
.panel-heading

views/index.jade

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ block content
138138
option(value='.python') Python
139139
option(value='.php') PHP
140140
option(value='.elixir') Elixir
141+
option(value='.crystal') Crystal
141142

142143
.warning
143144
b Warning:
@@ -192,6 +193,7 @@ block content
192193
include libraries/php4.jade
193194
include libraries/php5.jade
194195
include libraries/php6.jade
196+
include libraries/crystal.jade
195197

196198
section.sources
197199
.container

views/libraries/crystal.jade

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
// Crystal greyblake/crystal-jwt
2+
article.jwt-crystal.crystal.accordion(data-accordion)
3+
.panel-heading(data-control)
4+
img(src='/img/21.svg')
5+
h3 Crystal
6+
.panel-wrap(data-content)
7+
.panel-body
8+
.column
9+
p
10+
i.icon-budicon-500
11+
| Sign
12+
p
13+
i.icon-budicon-500
14+
| Verify
15+
p
16+
i.icon-budicon-500
17+
code iss
18+
| check
19+
p
20+
i.icon-budicon-500
21+
code sub
22+
| check
23+
p
24+
i.icon-budicon-500
25+
code aud
26+
| check
27+
p
28+
i.icon-budicon-500
29+
code exp
30+
| check
31+
p
32+
i.icon-budicon-500
33+
code nbf
34+
| check
35+
p
36+
i.icon-budicon-500
37+
code iat
38+
| check
39+
p
40+
i.icon-budicon-500
41+
code jti
42+
| check
43+
.column
44+
p
45+
i.icon-budicon-500
46+
| HS256
47+
p
48+
i.icon-budicon-500
49+
| HS384
50+
p
51+
i.icon-budicon-500
52+
| HS512
53+
p
54+
i.icon-budicon-501
55+
| RS256
56+
p
57+
i.icon-budicon-501
58+
| RS384
59+
p
60+
i.icon-budicon-501
61+
| RS512
62+
p
63+
i.icon-budicon-501
64+
| ES256
65+
p
66+
i.icon-budicon-501
67+
| ES384
68+
p
69+
i.icon-budicon-501
70+
| ES512
71+
72+
.author-info
73+
.maintainer
74+
a(href='https://github.com/greyblake')
75+
i.icon-budicon-333(data-toggle='tooltip', title='', data-original-title='Maintainer')
76+
| Sergey Potapov
77+
span.stars(data-repo='greyblake/crystal-jwt', style='display: inline;')
78+
i.icon-budicon-466
79+
.repository
80+
i.icon-1392070209-icon-social-github
81+
a(href='https://github.com/greyblake/crystal-jwt') View Repo
82+
83+
.panel-footer
84+
code git clone https://github.com/greyblake/crystal-jwt.git

0 commit comments

Comments
 (0)