Skip to content

Commit

Permalink
add a note to the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
CADBIMDeveloper committed Feb 4, 2024
1 parent 7f6f553 commit 40b2459
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Unreleased

- Added JSON Web keys support

It's possible to use JWKS with
```cs
var algorithmFactory = new JwtJsonWebKeySetAlgorithmFactory(webkeySetJsonString, serializer);

var decoder = new JwtDecoder(serializer, validator, urlEncoder, algorithmFactory);

var json = decoder.Decode(token);
```
or using the fluent builder API:
```cs
var decoded = JwtBuilder.Create()
.WithJsonWebKeySet(webkeySetJsonString)
.Decode<Customer>(token);
```

# 10.1.1

- Made ctor of ValidationParameters public, set default values for boolean properties to true
Expand Down

0 comments on commit 40b2459

Please sign in to comment.