Skip to content

Commit

Permalink
Merge Release Version 3.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaehren authored Jul 18, 2022
2 parents acf5b98 + ce37059 commit a680d64
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion TLS-Client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.1</version>
</parent>
<name>TLS-Client</name>
<artifactId>TLS-Client</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion TLS-Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.1</version>
</parent>
<artifactId>TLS-Core</artifactId>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public static byte[] computeSharedSecret(NamedGroup group, BigInteger privateKey
}
} else {
FFDHEGroup ffdheGroup = GroupFactory.getGroup(group);
BigInteger sharedElement = new BigInteger(publicKey).modPow(privateKey.abs(), ffdheGroup.getP().abs());
BigInteger sharedElement = new BigInteger(1, publicKey).modPow(privateKey.abs(), ffdheGroup.getP().abs());
return ArrayConverter.bigIntegerToNullPaddedByteArray(sharedElement,
ffdheGroup.getP().bitLength() / Bits.IN_A_BYTE);
}
Expand Down
2 changes: 1 addition & 1 deletion TLS-Mitm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.1</version>
</parent>
<artifactId>TLS-Mitm</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion TLS-Proxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.1</version>
</parent>
<name>TLS-Proxy</name>
<artifactId>TLS-Proxy</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion TLS-Server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.1</version>
</parent>
<artifactId>TLS-Server</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion TraceTool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.1</version>
</parent>
<artifactId>TraceTool</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion Transport/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.1</version>
</parent>
<artifactId>Transport</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion Utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.1</version>
</parent>
<artifactId>Utils</artifactId>
<packaging>jar</packaging>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.1</version>
<packaging>pom</packaging>
<inceptionYear>2015</inceptionYear>
<name>TLS-Attacker</name>
Expand Down Expand Up @@ -184,7 +184,7 @@
<dependency>
<groupId>de.rub.nds</groupId>
<artifactId>X509Attacker</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.3.0</version>
</dependency>
</dependencies>
<build>
Expand Down

0 comments on commit a680d64

Please sign in to comment.