Skip to content

Commit

Permalink
Merge branch 'Neustradamus-bouncycastle'
Browse files Browse the repository at this point in the history
* Neustradamus-bouncycastle:
  Bouncy Castle to 1.65
  • Loading branch information
neuhalje committed Jul 12, 2020
2 parents 64a6602 + 26b957f commit 50cabd8
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ repositories {
// ...
dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.64'
compile 'org.bouncycastle:bcpg-jdk15on:1.64'
compile 'org.bouncycastle:bcprov-jdk15on:1.65'
compile 'org.bouncycastle:bcpg-jdk15on:1.65'
// ...
compile 'name.neuhalfen.projects.crypto.bouncycastle.openpgp:bouncy-gpg:2.+'
// ...
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ check.dependsOn integrationTest


dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.64'
compile 'org.bouncycastle:bcpg-jdk15on:1.64'
compile 'org.bouncycastle:bcprov-jdk15on:1.65'
compile 'org.bouncycastle:bcpg-jdk15on:1.65'

compile 'org.slf4j:slf4j-api:1.7.30'
compile 'ch.qos.logback:logback-classic:1.2.3'
Expand Down
4 changes: 2 additions & 2 deletions examples/decrypt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ repositories {
}

dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.60'
compile 'org.bouncycastle:bcpg-jdk15on:1.60'
compile 'org.bouncycastle:bcprov-jdk15on:1.65'
compile 'org.bouncycastle:bcpg-jdk15on:1.65'

compile 'name.neuhalfen.projects.crypto.bouncycastle.openpgp:bouncy-gpg:2.2.0'

Expand Down
4 changes: 2 additions & 2 deletions examples/encrypt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ repositories {
}

dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.60'
compile 'org.bouncycastle:bcpg-jdk15on:1.60'
compile 'org.bouncycastle:bcprov-jdk15on:1.65'
compile 'org.bouncycastle:bcpg-jdk15on:1.65'

compile 'name.neuhalfen.projects.crypto.bouncycastle.openpgp:bouncy-gpg:2.+'

Expand Down
5 changes: 3 additions & 2 deletions examples/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,19 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<bouncycastle.version>1.65</bouncycastle.version>
</properties>

<dependencies>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.64</version>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpg-jdk15on</artifactId>
<version>1.64</version>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>name.neuhalfen.projects.crypto.bouncycastle.openpgp</groupId>
Expand Down
4 changes: 2 additions & 2 deletions examples/reencrypt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ repositories {
}

dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.60'
compile 'org.bouncycastle:bcpg-jdk15on:1.60'
compile 'org.bouncycastle:bcprov-jdk15on:1.65'
compile 'org.bouncycastle:bcpg-jdk15on:1.65'

compile 'name.neuhalfen.projects.crypto.bouncycastle.openpgp:bouncy-gpg:2.2.0'

Expand Down
4 changes: 2 additions & 2 deletions website/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ repositories {
// ...
dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.60'
compile 'org.bouncycastle:bcpg-jdk15on:1.60'
compile 'org.bouncycastle:bcprov-jdk15on:1.65'
compile 'org.bouncycastle:bcpg-jdk15on:1.65'
// ...
compile 'name.neuhalfen.projects.crypto.bouncycastle.openpgp:bouncy-gpg:2.+'
// ...
Expand Down

0 comments on commit 50cabd8

Please sign in to comment.