Skip to content

Commit 016caf7

Browse files
committed
Show support for the RSA-PSS signing algorithm
1 parent 488eb98 commit 016caf7

File tree

3 files changed

+46
-10
lines changed

3 files changed

+46
-10
lines changed

stylus/website/index.styl

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ body
579579
textarea
580580
width 100%
581581
max-width 266px
582-
resize none
582+
resize none
583583
input[type="checkbox"]
584584
margin-right 5px
585585
position relative
@@ -612,7 +612,7 @@ body
612612
.debugger-footer
613613
font-size 30px
614614
.website-validation
615-
padding-left 0
615+
padding-left 0
616616
.website-share
617617
padding-right 0
618618
button
@@ -621,7 +621,7 @@ body
621621
color white;
622622
font-weight 400;
623623
border-color #00b9f1;
624-
624+
625625

626626

627627
// libraries-jwt
@@ -1171,3 +1171,23 @@ footer
11711171

11721172
&:hover
11731173
opacity .7
1174+
1175+
.icon-unknown {
1176+
display: inline-block;
1177+
width: 19px;
1178+
height: 19px;
1179+
margin-top: -2px;
1180+
border: 1px solid #000;
1181+
border-radius: 50%;
1182+
text-align: center;
1183+
line-height: 13px;
1184+
font-style: normal;
1185+
}
1186+
.icon-unknown::after {
1187+
content: '?';
1188+
font-size: 14px;
1189+
line-height: 1;
1190+
padding: 0;
1191+
margin: 0;
1192+
display: inline;
1193+
}

views/website/libraries/0-.NET.json

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,18 @@
2424
"rs512": true,
2525
"es256": true,
2626
"es384": true,
27-
"es512": true
27+
"es512": true,
28+
"ps256": true,
29+
"ps384": false
2830
},
2931
"authorUrl": "https://www.microsoft.com",
3032
"authorName": "Microsoft",
31-
"gitHubRepoPath": "AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet",
32-
"repoUrl": "https://github.com/MSOpenTech/azure-activedirectory-identitymodel-extensions-for-dotnet",
33-
"installCommandHtml": "Install-Package<br><a href=\"https://www.nuget.org/packages/System.IdentityModel.Tokens.Jwt/\">System.IdentityModel.Tokens.Jwt</a>"
33+
"gitHubRepoPath":
34+
"AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet",
35+
"repoUrl":
36+
"https://github.com/MSOpenTech/azure-activedirectory-identitymodel-extensions-for-dotnet",
37+
"installCommandHtml":
38+
"Install-Package<br><a href=\"https://www.nuget.org/packages/System.IdentityModel.Tokens.Jwt/\">System.IdentityModel.Tokens.Jwt</a>"
3439
},
3540
{
3641
"minimumVersion": null,
@@ -58,7 +63,8 @@
5863
"authorName": "DV",
5964
"gitHubRepoPath": "dvsekhvalnov/jose-jwt",
6065
"repoUrl": "https://github.com/dvsekhvalnov/jose-jwt",
61-
"installCommandHtml": "Install-Package<br><a href=\"http://www.nuget.org/packages/jose-jwt/\">jose-jwt</a>"
66+
"installCommandHtml":
67+
"Install-Package<br><a href=\"http://www.nuget.org/packages/jose-jwt/\">jose-jwt</a>"
6268
},
6369
{
6470
"minimumVersion": null,
@@ -86,7 +92,8 @@
8692
"authorName": "DV",
8793
"gitHubRepoPath": "dvsekhvalnov/jose-rt",
8894
"repoUrl": "https://github.com/dvsekhvalnov/jose-rt",
89-
"installCommandHtml": "Install-Package<br><a href=\"http://www.nuget.org/packages/jose-rt/\">jose-rt</a>"
95+
"installCommandHtml":
96+
"Install-Package<br><a href=\"http://www.nuget.org/packages/jose-rt/\">jose-rt</a>"
9097
}
9198
]
92-
}
99+
}

views/website/libraries/template.pug

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ article(data-accordion, class=`accordion ${lang.uniqueClass}`)
7272
p
7373
i(class=lib.support.es512 ? 'icon-budicon-500' : 'icon-budicon-501')
7474
| ES512
75+
p
76+
i(class=lib.support.ps256 ? 'icon-budicon-500' : (lib.support.ps256 !== undefined ? 'icon-budicon-501' : 'icon-unknown'))
77+
| PS256
78+
p
79+
i(class=lib.support.ps384 ? 'icon-budicon-500' : (lib.support.ps384 !== undefined ? 'icon-budicon-501' : 'icon-unknown'))
80+
| PS384
81+
p
82+
i(class=lib.support.ps512 ? 'icon-budicon-500' : (lib.support.ps512 !== undefined ? 'icon-budicon-501' : 'icon-unknown'))
83+
| PS512
7584

7685
.author-info
7786
.maintainer

0 commit comments

Comments
 (0)