Skip to content

Commit

Permalink
Upgrade bouncycastle dependencies to 1.72
Browse files Browse the repository at this point in the history
Fixes hap-java#80
Succeeds hap-java#146
  • Loading branch information
wborn committed Oct 12, 2022
1 parent 781311e commit 8ec6ce6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# HAP-Java 2.0.3
* Upgrade bouncycastle dependencies to 1.72

# HAP-Java 2.0.2
* Various minor stability issues for after an accessory has been removed.

Expand Down
10 changes: 8 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,16 @@

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.51</version>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.72</version>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bctls-jdk18on</artifactId>
<version>1.72</version>
</dependency>

<dependency>
<groupId>net.vrallev.ecc</groupId>
<artifactId>ecc-25519-java</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import org.bouncycastle.crypto.generators.Poly1305KeyGenerator;
import org.bouncycastle.crypto.params.KeyParameter;
import org.bouncycastle.crypto.params.ParametersWithIV;
import org.bouncycastle.crypto.tls.AlertDescription;
import org.bouncycastle.crypto.tls.TlsFatalAlert;
import org.bouncycastle.tls.AlertDescription;
import org.bouncycastle.tls.TlsFatalAlert;
import org.bouncycastle.util.Arrays;

public class ChachaDecoder {
Expand Down

0 comments on commit 8ec6ce6

Please sign in to comment.