Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace remaining references to bcX-jdk150 #32669

Merged
merged 1 commit into from
Apr 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/kubernetes-client.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ Please note that if you would like to use Elliptic Curve keys with Kubernetes Cl
[source,gradle,role="secondary asciidoc-tabs-target-sync-gradle"]
.build.gradle
----
implementation("org.bouncycastle:bcpkix-jdk15on")
implementation("org.bouncycastle:bcpkix-jdk18on")
----

Note that internally an `org.bouncycastle.jce.provider.BouncyCastleProvider` provider will be registered if it has not already been registered.
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/security-customization.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ and add the BouncyCastle provider dependency:
[source,gradle,role="secondary asciidoc-tabs-target-sync-gradle"]
.build.gradle
----
implementation("org.bouncycastle:bcprov-jdk15on")
implementation("org.bouncycastle:bcprov-jdk18on")
----

[[bouncy-castle-jsse]]
Expand Down Expand Up @@ -459,7 +459,7 @@ and add the BouncyCastle TLS dependency:
[source,gradle,role="secondary asciidoc-tabs-target-sync-gradle"]
.build.gradle
----
implementation("org.bouncycastle:bctls-jdk15on")
implementation("org.bouncycastle:bctls-jdk18on")
----

[[bouncy-castle-fips]]
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/stork-kubernetes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ kubectl apply -f target/kubernetes/kubernetes.yml -n=development

[NOTE]
====
Please note that if you use Elliptic Curve keys with Stork and are getting exceptions like `java.lang.ClassNotFoundException: org.bouncycastle.jce.provider.BouncyCastleProvider`, then adding a BouncyCastle PKIX dependency (`org.bouncycastle:bcpkix-jdk15on`) is required.
Please note that if you use Elliptic Curve keys with Stork and are getting exceptions like `java.lang.ClassNotFoundException: org.bouncycastle.jce.provider.BouncyCastleProvider`, then adding a BouncyCastle PKIX dependency (`org.bouncycastle:bcpkix-jdk18on`) is required.

Note that internally an `org.bouncycastle.jce.provider.BouncyCastleProvider` provider will be registered if it has not already been registered.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ public final class CertUtilsSubstitutions {
@Substitute
static PrivateKey handleECKey(InputStream keyInputStream) throws IOException {
throw new RuntimeException(
"EC Keys are not supported when using the native binary, please add the org.bouncycastle:bcpkix-jdk15on dependency");
"EC Keys are not supported when using the native binary, please add the org.bouncycastle:bcpkix-jdk18on dependency");
}
}