Skip to content

Commit

Permalink
README and CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
robotdan committed May 27, 2020
1 parent cdfb2a8 commit 1683233
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES
@@ -1,5 +1,9 @@
FusionAuth JWT Changes

Changes in 3.3.0

* Add JSONWebKeyParser to extract public keys from a JSON Web key. This allows you to build JWT verifiers from publicly available JWKS endpoints.

Changes in 3.2.0

* Add new HMAC signer methods to take bytes.
Expand Down
9 changes: 5 additions & 4 deletions README.md
Expand Up @@ -20,6 +20,7 @@ We are very interested in compensating anyone that can identify a security relat
- Build JWK from Private Key
- Build JWK from Public Key
- Build JWK from PEM
- Parse public keys from a JSON Web Key
- Helpers
- Generate RSA Key Pairs in `2048`, `3072` or `4096` bit sizes
- Generate EC Key Pairs in `256`, `384` and `521` bit sizes
Expand All @@ -34,23 +35,23 @@ We are very interested in compensating anyone that can identify a security relat
<dependency>
<groupId>io.fusionauth</groupId>
<artifactId>fusionauth-jwt</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
</dependency>
```

### Gradle
```groovy
implementation 'io.fusionauth:fusionauth-jwt:3.2.0'
implementation 'io.fusionauth:fusionauth-jwt:3.3.0'
```

### Gradle Kotlin
```kotlin
implementation("io.fusionauth:fusionauth-jwt:3.2.0")
implementation("io.fusionauth:fusionauth-jwt:3.3.0")
```

### Savant
```groovy
dependency(id: "io.fusionauth:fusionauth-jwt:3.2.0")
dependency(id: "io.fusionauth:fusionauth-jwt:3.3.0")
```

For others see [https://search.maven.org](https://search.maven.org/artifact/io.fusionauth/fusionauth-jwt/3.1.6/jar).
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>io.fusionauth</groupId>
<artifactId>fusionauth-jwt</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<packaging>jar</packaging>

<name>FusionAuth JWT</name>
Expand Down

0 comments on commit 1683233

Please sign in to comment.