Skip to content

Commit 7315f83

Browse files
committed
updated CONTRIBUTORS.html/releasenotes - related to github #1864
moved BCJSSE to 1.0.20.
1 parent 67c976c commit 7315f83

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CONTRIBUTORS.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,7 @@
551551
<li>Markus Sommer &lt;https://github.com/marsom&gt; - BCStyle lookup table fix for jurisdiction values.</li>
552552
<li>TaZbon &lt;https://github.com/TaZbon&gt; - Optional lax parsing patch for PEM parser.</li>
553553
<li>han-ji &lt;https://github.com/han-jl&gt; - Fix to sign extension issue in CTR random seek code.</li>
554+
<li>https://github.com/crlorentzen &lt;https://github.com/crlorentzen&gt; - Addition of system property for configuring GCM ciphers in 1.2 FIPS mode in the JSSE.</li>
554555
</ul>
555556
</body>
556557
</html>

docs/releasenotes.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ <h3>2.1.2 Defects Fixed</h3>
2828
<h3>2.1.3 Additional Features and Functionality</h3>
2929
<ul>
3030
<li>BCJSSE: Added support for security property "jdk.tls.server.defaultDHEParameters" (disabled in FIPS mode).</li>
31+
<li>BCJSSE: Added support for security property "org.bouncycastle.jsse.fips.allowGCMCiphersIn12" (false by default).</li>
3132
</ul>
3233

3334
<a id="r1rv78d1"><h3>2.2.1 Version</h3></a>

tls/src/main/java/org/bouncycastle/jsse/provider/BouncyCastleJsseProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ public class BouncyCastleJsseProvider
2626

2727
private static final String JSSE_CONFIG_PROPERTY = "org.bouncycastle.jsse.config";
2828

29-
private static final double PROVIDER_VERSION = 1.0019;
30-
private static final String PROVIDER_INFO = "Bouncy Castle JSSE Provider Version 1.0.19";
29+
private static final double PROVIDER_VERSION = 1.0020;
30+
private static final String PROVIDER_INFO = "Bouncy Castle JSSE Provider Version 1.0.20";
3131

3232
private final Map<String, BcJsseService> serviceMap = new ConcurrentHashMap<String, BcJsseService>();
3333
private final Map<String, EngineCreator> creatorMap = new HashMap<String, EngineCreator>();

0 commit comments

Comments
 (0)