mirror of https://github.com/jwtk/jjwt.git
Made some documentation clarifications
This commit is contained in:
parent
1548c3159d
commit
9ca3d92bf7
|
@ -39,9 +39,9 @@ But what if signature validation failed? You can catch `SignatureException` and
|
||||||
|
|
||||||
## Supported Features
|
## Supported Features
|
||||||
|
|
||||||
* Creating and parsing plaintext JWTs
|
* Creating and parsing plaintext compact JWTs
|
||||||
|
|
||||||
* Creating and parsing digitally signed JWTs (aka JWSs) with the following algorithms:
|
* Creating and parsing digitally signed compact JWTs (aka JWSs) with the following algorithms:
|
||||||
* HS256: HMAC using SHA-384
|
* HS256: HMAC using SHA-384
|
||||||
* HS384: HMAC using SHA-384
|
* HS384: HMAC using SHA-384
|
||||||
* HS512: HMAC using SHA-512
|
* HS512: HMAC using SHA-512
|
||||||
|
@ -54,7 +54,8 @@ But what if signature validation failed? You can catch `SignatureException` and
|
||||||
|
|
||||||
## Currently Unsupported Features
|
## Currently Unsupported Features
|
||||||
|
|
||||||
* Elliptic Curve signature algorithms ES256, ES384 and ES512 are not yet implemented.
|
* [Non-compact](https://tools.ietf.org/html/draft-ietf-jose-json-web-signature-31#section-7.2) serialization and parsing are not yet implemented.
|
||||||
|
* Elliptic Curve signature algorithms `ES256`, `ES384` and `ES512` are not yet implemented.
|
||||||
* JWE (Encryption for JWT) is not yet implemented.
|
* JWE (Encryption for JWT) is not yet implemented.
|
||||||
|
|
||||||
Both of these feature sets will be implemented in a future release when possible. Community contributions are welcome!
|
These feature sets will be implemented in a future release when possible. Community contributions are welcome!
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -102,7 +102,7 @@
|
||||||
<groupId>org.bouncycastle</groupId>
|
<groupId>org.bouncycastle</groupId>
|
||||||
<artifactId>bcprov-jdk15on</artifactId>
|
<artifactId>bcprov-jdk15on</artifactId>
|
||||||
<version>${bouncycastle.version}</version>
|
<version>${bouncycastle.version}</version>
|
||||||
<scope>runtime</scope>
|
<scope>runtime</scope> <!-- Not required at compile time -->
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue