Skip to content

Commit

Permalink
moved to 1.78, BCJSSE 1.0.19.
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed Apr 4, 2024
1 parent 4721ce2 commit c397f26
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions bc-build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# intended to hold user-specific settings that are *not* committed to
# the repository.

release.suffix: 178b04
release.name: 1.77.99
release.version: 1.77.99
release.debug: true
release.suffix: 178
release.name: 1.78
release.version: 1.78
release.debug: false

mail.jar.home: ./libs/javax.mail-1.4.7.jar
activation.jar.home: ./libs/activation-1.1.1.jar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public enum CompositeName
Falcon512_ECDSA_brainpoolP256r1_SHA256("Falcon512-ECDSA-brainpoolP256r1-SHA256"),
Falcon512_Ed25519_SHA512("Falcon512-Ed25519-SHA512");

private String id;
private final String id;

private CompositeName(String id)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public final class BouncyCastleProvider extends Provider
{
private static final Logger LOG = Logger.getLogger(BouncyCastleProvider.class.getName());

private static String info = "BouncyCastle Security Provider v1.78b";
private static String info = "BouncyCastle Security Provider v1.78";

public static final String PROVIDER_NAME = "BC";

Expand Down Expand Up @@ -167,7 +167,7 @@ public final class BouncyCastleProvider extends Provider
*/
public BouncyCastleProvider()
{
super(PROVIDER_NAME, 1.7799, info);
super(PROVIDER_NAME, 1.78, info);

AccessController.doPrivileged(new PrivilegedAction()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class BouncyCastlePQCProvider
extends Provider
implements ConfigurableProvider
{
private static String info = "BouncyCastle Post-Quantum Security Provider v1.77";
private static String info = "BouncyCastle Post-Quantum Security Provider v1.78";

public static String PROVIDER_NAME = "BCPQC";

Expand Down Expand Up @@ -50,7 +50,7 @@ public class BouncyCastlePQCProvider
*/
public BouncyCastlePQCProvider()
{
super(PROVIDER_NAME, 1.77, info);
super(PROVIDER_NAME, 1.78, info);

AccessController.doPrivileged(new PrivilegedAction()
{
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.77";
private static String info = "BouncyCastle Security Provider v1.78";

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.77, info);
super(PROVIDER_NAME, 1.78, info);

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

public static final String PROVIDER_NAME = "BC";

Expand Down Expand Up @@ -135,7 +135,7 @@ public final class BouncyCastleProvider extends Provider
*/
public BouncyCastleProvider()
{
super(PROVIDER_NAME, 1.77, info);
super(PROVIDER_NAME, 1.78, info);

AccessController.doPrivileged(new PrivilegedAction()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public class BouncyCastleJsseProvider

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

private static final double PROVIDER_VERSION = 1.0018;
private static final String PROVIDER_INFO = "Bouncy Castle JSSE Provider Version 1.0.18";
private static final double PROVIDER_VERSION = 1.0019;
private static final String PROVIDER_INFO = "Bouncy Castle JSSE Provider Version 1.0.19";

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

0 comments on commit c397f26

Please sign in to comment.