Made some documentation clarifications

This commit is contained in:
Les Hazlewood 2014-09-19 14:30:47 -07:00
parent 1548c3159d
commit 9ca3d92bf7
2 changed files with 6 additions and 5 deletions

View File

@ -39,9 +39,9 @@ But what if signature validation failed? You can catch `SignatureException` and
## 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
* HS384: HMAC using SHA-384
* HS512: HMAC using SHA-512
@ -54,7 +54,8 @@ But what if signature validation failed? You can catch `SignatureException` and
## 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.
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!

View File

@ -102,7 +102,7 @@
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
<scope>runtime</scope>
<scope>runtime</scope> <!-- Not required at compile time -->
<optional>true</optional>
</dependency>