Skip to content

Commit

Permalink
1.74 release updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed Jun 7, 2023
1 parent 7e1fefa commit f0dec6e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CONTRIBUTORS.html
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,9 @@
<li>Phillip Schichtel &lt;https://github.com/pschichtel&gt; - initial code for specifying wrapping algorithm with PGP PBE encryption method, forcing of session key usage.</li>
<li>Alexander Dippel &lt;https://github.com/adippel&gt; - corrections to prevent NPEs on chunked encoding of EST responses.</li>
<li>Johann N. Löfflmann &lt;https://github.com/jonelo&gt; - fix to "too small" buffer issue in Blake2sp.</li>
<li>scott-xu &lt;https://github.com/scott-xu&gt; - message fix in OpenSSHPublicKeyUtil</li>
<li> Scott Xu &lt;https://github.com/scott-xu&gt; - message fix in OpenSSHPublicKeyUtil</li>
<li>Scott Arciszewski &lt;https://github/scottarc&gt; - correction to ant scripts to ensure UTF8 support.</li>
<li>GitHub Security team - identification of the X509LDAPCertStoreSpi wildcard bug (see CVE-2023-33201).</li>
</ul>
</body>
</html>
2 changes: 1 addition & 1 deletion ant/jdk15+.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<fileset dir="pkix/src/main/java" includes="**/*.java" />
<fileset dir="pkix/src/main/jdk1.5" includes="**/*.java" />
<fileset dir="pkix/src/main/javadoc" includes="**/*.html" />
<fileset dir="pkix/src/main/java" includes="**/*.properties" />
<fileset dir="pkix/src/main/resources" includes="**/*.properties" />
<fileset dir="pkix/src/test/java" includes="**/*.java" />
<fileset dir="pkix/src/test/javadoc" includes="**/*.html" />
<fileset dir="pkix/src/test/resources" includes="**/*.*" />
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ subprojects {
targetCompatibility = 1.8
}

version = '1.73'
version = '1.74'

task testFull(type:Test) {
systemProperties = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
public final class BouncyCastleProvider extends Provider
implements ConfigurableProvider
{
private static String info = "BouncyCastle Security Provider v1.73";
private static String info = "BouncyCastle Security Provider v1.74";

public static final String PROVIDER_NAME = "BC";

Expand Down Expand Up @@ -118,7 +118,7 @@ public final class BouncyCastleProvider extends Provider
*/
public BouncyCastleProvider()
{
super(PROVIDER_NAME, 1.73, info);
super(PROVIDER_NAME, 1.74, info);

setup();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
public final class BouncyCastleProvider extends Provider
implements ConfigurableProvider
{
private static String info = "BouncyCastle Security Provider v1.73";
private static String info = "BouncyCastle Security Provider v1.74";

public static final String PROVIDER_NAME = "BC";

Expand Down Expand Up @@ -133,7 +133,7 @@ public final class BouncyCastleProvider extends Provider
*/
public BouncyCastleProvider()
{
super(PROVIDER_NAME, 1.73, info);
super(PROVIDER_NAME, 1.74, info);

AccessController.doPrivileged(new PrivilegedAction()
{
Expand Down

0 comments on commit f0dec6e

Please sign in to comment.