Skip to content

Commit e97b52b

Browse files
committed
feat: .net 6
BREAKING CHANGE .NET 6 version
1 parent 2b93cab commit e97b52b

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

README.MD

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<img src="https://repository-images.githubusercontent.com/268701472/8bf84980-a6ce-11ea-83da-e2133c5a3a7a" alt=".NET DevPack" width="300px" />
22

3-
What is the .NET DevPack.JwtExtensions?
3+
What is the .NET DevPack JwtExtensions?
44
=====================
5-
.NET DevPack JwtExtensions was created to help you protect you API ASP.NET Core with JWT Bearer Token using a Custom JWKS Endpoint. Giving hability to leverage the security of your environment using Assymetric Keys. Which is by far a most recommended cryptography to digitally signin you JWT.
5+
.NET DevPack JwtExtensions was created to help you validate Bearer tokens from Jwks endpoint. It configure your ASP.NET Core with JWT Bearer Token using a Custom JWKS Endpoint. Giving hability to leverage the security of your environment using Assymetric Keys. Which is by far a most recommended cryptography to digitally signin you JWT.
66

7-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/f1bd42eda59844ea95852606741147fa)](https://www.codacy.com/gh/NetDevPack/NetDevPack.Identity?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=NetDevPack/NetDevPack.JwtExtensions&amp;utm_campaign=Badge_Grade)
8-
[![Build status](https://ci.appveyor.com/api/projects/status/e283g9ik4rk3ymsp?svg=true)](https://ci.appveyor.com/project/EduardoPires/netdevpack-identity)
9-
![.NET Core](https://github.com/NetDevPack/NetDevPack.JwtExtensions/workflows/.NET%20Core/badge.svg)
10-
[![License](http://img.shields.io/github/license/NetDevPack/NetDevPack.JwtExtensions.svg)](LICENSE)
7+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/f1bd42eda59844ea95852606741147fa)](https://www.codacy.com/gh/NetDevPack/NetDevPack.Security.JwtExtensions?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=NetDevPack/NetDevPack.Security.JwtExtensions&amp;utm_campaign=Badge_Grade)
8+
[![Build status](https://ci.appveyor.com/api/projects/status/e283g9ik4rk3ymsp?svg=true)](https://ci.appveyor.com/project/netdevpack/netdevpack-jwtextensions)
9+
[![License](http://img.shields.io/github/license/NetDevPack/NetDevPack.Security.JwtExtensions.svg)](LICENSE)
1110

1211
## Give a Star! :star:
1312
If you liked the project or if NetDevPack helped you, please give a star ;)
@@ -16,13 +15,13 @@ If you liked the project or if NetDevPack helped you, please give a star ;)
1615

1716
| Package | Version | Popularity |
1817
| ------- | ----- | ----- |
19-
| `NetDevPack.JwtExtensions` | [![NuGet](https://img.shields.io/nuget/v/NetDevPack.JwtExtensions.svg)](https://nuget.org/packages/NetDevPack.JwtExtensions) | [![Nuget](https://img.shields.io/nuget/dt/NetDevPack.JwtExtensions.svg)](https://nuget.org/packages/NetDevPack.JwtExtensions) |
18+
| `NetDevPack.Security.JwtExtensions` | [![NuGet](https://img.shields.io/nuget/v/NetDevPack.Security.JwtExtensions.svg)](https://nuget.org/packages/NetDevPack.Security.JwtExtensions) | [![Nuget](https://img.shields.io/nuget/dt/NetDevPack.Security.JwtExtensions.svg)](https://nuget.org/packages/NetDevPack.Security.JwtExtensions) |
2019

2120

2221
.NET DevPack.JwtExtensions can be installed in your ASP.NET Core application using the Nuget package manager or the `dotnet` CLI.
2322

2423
```
25-
dotnet add package NetDevPack.JwtExtensions
24+
dotnet add package NetDevPack.Security.JwtExtensions
2625
```
2726

2827
Then use Extension at configuration in `ConfigureServices` method of your `Startup.cs`:
@@ -38,15 +37,13 @@ services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
3837
### Configuring JWT
3938
If you want to generate JSON Web Tokens in your application you need to add the [NetDevPack.Jwk](https://github.com/NetDevPack/NetDevPack.Jwk).
4039

41-
>**Note:** NetDevPack.JwtExtensions is for those who already have an api who use `NetDevPack.Jwk`
40+
>**Note:** NetDevPack.Security.JwtExtensions is for those who already have an api who use `NetDevPack.Jwk`
4241
>
4342
>**Note:** The `NetDevPack.Jwk` is a set of components who will generate Keys using industry security best standards (NIST Rotating keys, RSA Key Length, ECDsa P-256). It's supports [Elliptic Curves](https://blog.cloudflare.com/a-relatively-easy-to-understand-primer-on-elliptic-curve-cryptography/) and RSA as well.
4443
4544
## Examples
46-
Use the [sample application](https://github.com/NetDevPack/NetDevPack.JwtExtensions/tree/master/samples/ApiClient) to understand how NetDevPack.JwtExtensions can be implemented and help you to decrease the complexity of your application and development time.
47-
48-
## Compatibility
49-
The **NetDevPack.JwtExtensions** was developed to be implemented in **ASP.NET Core 3.1** `LTS` applications, in the next versions will be add the 2.1 `LTS` support.
45+
Use the [sample application](https://github.com/NetDevPack/NetDevPack.Security.JwtExtensions/tree/master/samples/ApiClient) to understand how NetDevPack.Security.JwtExtensions can be implemented and help you to decrease the complexity of your application and development time.
5046

5147
## About
52-
.NET DevPack.JwtExtensions was developed by [Eduardo Pires](http://eduardopires.net.br) under the [MIT license](LICENSE).
48+
.NET DevPack.JwtExtensions was developed by [Bruno Brito](https://brunobrito.net.br) under the [MIT license](LICENSE).
49+

0 commit comments

Comments
 (0)