-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update the HTTP Encrypted Content Encoding implementation to support aes128gcm, as defined in the 9th version of the draft [1]. * Update the Web Push implementation to use aes128gcm, as defined in the 9th version of the draft [2]. [1] https://tools.ietf.org/html/draft-ietf-httpbis-encryption-encoding-09 [2] https://tools.ietf.org/html/draft-ietf-webpush-encryption-09
- Loading branch information
1 parent
8fcb2b9
commit ecd7b02
Showing
11 changed files
with
726 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ build/ | |
.gradle/ | ||
*.iml | ||
target/ | ||
out/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# 4.0.0 | ||
|
||
* Support [aes128gcm content encoding](https://tools.ietf.org/html/draft-ietf-httpbis-encryption-encoding-09#section-2) | ||
* Use `PushService.send(Notification, Encoding)` or the analogous `sendAsync` with `Encoding.AES128GCM`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package nl.martijndwars.webpush; | ||
|
||
public enum Encoding { | ||
AESGCM, AES128GCM | ||
} |
Oops, something went wrong.