jwt icon indicating copy to clipboard operation
jwt copied to clipboard

Jwt.Net, a JWT (JSON Web Token) implementation for .NET

Results 23 jwt issues
Sort by recently updated
recently updated
newest added

### Why use the private key to decrypt **I will not be able to decrypt properly with the public key** **When I decrypt with the public key it doesn't decrypt...

question

If I have an encoded JWT: ``` eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJPbmxpbmUgSldUIEJ1aWxkZXIiLCJpYXQiOjE2NTcyNzY0OTgsImV4cCI6MTY4ODgxMzAzMywiYXVkIjoid3d3LmV4YW1wbGUuY29tIiwic3ViIjoianJvY2tldEBleGFtcGxlLmNvbSIsIkdpdmVuTmFtZSI6IkpvaG5ueSIsIlN1cm5hbWUiOiJSb2NrZXQiLCJFbWFpbCI6Impyb2NrZXRAZXhhbXBsZS5jb20iLCJSb2xlIjpbIk1hbmFnZXIiLCJQcm9qZWN0IEFkbWluaXN0cmF0b3IiXX0.vHyzme52-ZQnrR6ub3nJNndqQo_C_lveLaJCSePXdsk ``` Which looks like this: ``` { typ: "JWT", alg: "HS256" }. { iss: "Online JWT Builder", iat: 1657276498, exp: 1688813033, aud:...

question

I see that there are a pipeline setup for the repo, it does however just build on windows. Regarding the move to System.Text.Json and the question of increasing test coverage...

help wanted
build & deployment

I was unable to correctly sign with a ECDSA key. I attempted to create an algorithm like: `var algo = new ECDSAAlgorithm();` I was unable to do this, however was...

question

After the recent changes, it includes one or another. @hartmark we've made it too opinionated: either one or another. How about somehow allow both options on the platform whether that's...

core

Things to include; Issue: - Version - Exception message, stack trace Pull request: - Link to issue - Summary of changes - Breaking change notice - Test added - Version...

help wanted

```c# var payload = new Dictionary { { "claim1", 0 }, { "claim2", "claim2-value" } }; IJwtAlgorithm algorithm = new RS256Algorithm(certificate); IJsonSerializer serializer = new JsonNetSerializer(); IBase64UrlEncoder urlEncoder = new...

bug
documentation

I would love to see the various event methods on `JwtAuthenticationOptions` be exposed via the `EventsType` model like other Authentication providers. This would allow me to then pull in other...

enchantment
extensions

Ok, I am building up my ASP.Net API Application to use the RS1024 algorithm. ```csharp services.AddAuthentication(JwtAuthenticationDefaults.AuthenticationScheme) .AddJwt(options => { options.VerifySignature = true; }); services.AddJwtEncoder(); X509Certificate2 cert = LoadFromSecureStore(); services.AddSingleton(new DelegateAlgorithmFactory(new...

enchantment