From f52b3d7c7e5f87b74ce16381d55fa40cfd64beae Mon Sep 17 00:00:00 2001 From: Les Hazlewood <121180+lhazlewood@users.noreply.github.com> Date: Tue, 5 Sep 2023 14:11:31 -0700 Subject: [PATCH] Updated README.md to show BC version 1.76 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e3334a530..b95e148e8 100644 --- a/README.md +++ b/README.md @@ -555,8 +555,8 @@ If you're building a (non-Android) JDK project, you will want to define the foll It is unnecessary for these algorithms on JDK 15 or later. org.bouncycastle - bcprov-jdk15on - 1.70 + bcprov-jdk18on or bcprov-jdk15to18 on JDK 7 + 1.76 runtime --> @@ -578,7 +578,7 @@ dependencies { - JDK 14 or earlier, and you want to use EdDSA (Ed25519 or Ed448) Elliptic Curve signature algorithms. It is unnecessary for these algorithms on JDK 15 or later. */ - // runtimeOnly 'org.bouncycastle:bcprov-jdk15on:1.70' + // runtimeOnly 'org.bouncycastle:bcprov-jdk18on:1.76' // or bcprov-jdk15to18 on JDK 7 } ``` @@ -607,7 +607,7 @@ dependencies { - EdDSA (Ed25519 or Ed448) Elliptic Curve signature algorithms. ** AND ALSO ensure you enable the BouncyCastle provider as shown below ** */ - //implementation('org.bouncycastle:bcprov-jdk15on:1.70') + //implementation('org.bouncycastle:bcprov-jdk18on:1.76') // or bcprov-jdk15to18 for JDK 7 } ```