Skip to content

Commit 2ea1d94

Browse files
author
gefeili
committed
Merge branch 'main' into openpgp-certificate-refactor
2 parents 70c767a + 6a62b22 commit 2ea1d94

File tree

7 files changed

+18
-11
lines changed

7 files changed

+18
-11
lines changed

prov/src/main/ext-jdk1.9/module-info.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
opens org.bouncycastle.jcajce.provider.asymmetric.edec to java.base;
1010
opens org.bouncycastle.pqc.jcajce.provider.lms to java.base;
11+
opens org.bouncycastle.jcajce.provider.asymmetric.mldsa to java.base;
12+
opens org.bouncycastle.jcajce.provider.asymmetric.mlkem to java.base;
13+
opens org.bouncycastle.jcajce.provider.asymmetric.slhdsa to java.base;
1114

1215
exports org.bouncycastle;
1316
exports org.bouncycastle.asn1;
@@ -110,20 +113,22 @@
110113
exports org.bouncycastle.pqc.crypto.bike;
111114
exports org.bouncycastle.pqc.crypto.cmce;
112115
exports org.bouncycastle.pqc.crypto.crystals.dilithium;
116+
exports org.bouncycastle.pqc.crypto.mldsa;
113117
exports org.bouncycastle.pqc.crypto.mlkem;
114118
exports org.bouncycastle.pqc.crypto.falcon;
115119
exports org.bouncycastle.pqc.crypto.frodo;
116120
exports org.bouncycastle.pqc.legacy.crypto.gemss;
117121
exports org.bouncycastle.pqc.crypto.hqc;
118122
exports org.bouncycastle.pqc.crypto.lms;
123+
exports org.bouncycastle.pqc.crypto.mayo;
119124
exports org.bouncycastle.pqc.crypto.newhope;
120125
exports org.bouncycastle.pqc.crypto.ntru;
121126
exports org.bouncycastle.pqc.crypto.ntruprime;
122127
exports org.bouncycastle.pqc.crypto.picnic;
123-
exports org.bouncycastle.pqc.legacy.crypto.rainbow;
124128
exports org.bouncycastle.pqc.crypto.saber;
125129
exports org.bouncycastle.pqc.crypto.sphincs;
126130
exports org.bouncycastle.pqc.crypto.sphincsplus;
131+
exports org.bouncycastle.pqc.crypto.snova;
127132
exports org.bouncycastle.pqc.crypto.util;
128133
exports org.bouncycastle.pqc.crypto.xmss;
129134
exports org.bouncycastle.pqc.math.ntru;

prov/src/main/java/org/bouncycastle/jce/provider/BouncyCastleProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public final class BouncyCastleProvider extends Provider
7878
{
7979
private static final Logger LOG = Logger.getLogger(BouncyCastleProvider.class.getName());
8080

81-
private static String info = "BouncyCastle Security Provider v1.80";
81+
private static String info = "BouncyCastle Security Provider v1.81";
8282

8383
public static final String PROVIDER_NAME = "BC";
8484

@@ -171,7 +171,7 @@ public final class BouncyCastleProvider extends Provider
171171
*/
172172
public BouncyCastleProvider()
173173
{
174-
super(PROVIDER_NAME, 1.80, info);
174+
super(PROVIDER_NAME, 1.81, info);
175175

176176
AccessController.doPrivileged(new PrivilegedAction()
177177
{

prov/src/main/java/org/bouncycastle/pqc/jcajce/provider/BouncyCastlePQCProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class BouncyCastlePQCProvider
2222
extends Provider
2323
implements ConfigurableProvider
2424
{
25-
private static String info = "BouncyCastle Post-Quantum Security Provider v1.80";
25+
private static String info = "BouncyCastle Post-Quantum Security Provider v1.81";
2626

2727
public static String PROVIDER_NAME = "BCPQC";
2828

@@ -51,7 +51,7 @@ public class BouncyCastlePQCProvider
5151
*/
5252
public BouncyCastlePQCProvider()
5353
{
54-
super(PROVIDER_NAME, 1.80, info);
54+
super(PROVIDER_NAME, 1.81, info);
5555

5656
AccessController.doPrivileged(new PrivilegedAction()
5757
{

prov/src/main/jdk1.1/org/bouncycastle/jce/provider/BouncyCastleProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
public final class BouncyCastleProvider extends Provider
4444
implements ConfigurableProvider
4545
{
46-
private static String info = "BouncyCastle Security Provider v1.80";
46+
private static String info = "BouncyCastle Security Provider v1.81";
4747

4848
public static final String PROVIDER_NAME = "BC";
4949

@@ -118,7 +118,7 @@ public final class BouncyCastleProvider extends Provider
118118
*/
119119
public BouncyCastleProvider()
120120
{
121-
super(PROVIDER_NAME, 1.8000, info);
121+
super(PROVIDER_NAME, 1.8100, info);
122122

123123
setup();
124124
}

prov/src/main/jdk1.4/org/bouncycastle/jce/provider/BouncyCastleProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
public final class BouncyCastleProvider extends Provider
5252
implements ConfigurableProvider
5353
{
54-
private static String info = "BouncyCastle Security Provider v1.80";
54+
private static String info = "BouncyCastle Security Provider v1.81";
5555

5656
public static final String PROVIDER_NAME = "BC";
5757

@@ -135,7 +135,7 @@ public final class BouncyCastleProvider extends Provider
135135
*/
136136
public BouncyCastleProvider()
137137
{
138-
super(PROVIDER_NAME, 1.8000, info);
138+
super(PROVIDER_NAME, 1.8100, info);
139139

140140
AccessController.doPrivileged(new PrivilegedAction()
141141
{

prov/src/main/jdk1.9/module-info.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@
127127
exports org.bouncycastle.pqc.crypto.frodo;
128128
exports org.bouncycastle.pqc.crypto.hqc;
129129
exports org.bouncycastle.pqc.crypto.lms;
130+
exports org.bouncycastle.pqc.crypto.mayo;
130131
exports org.bouncycastle.pqc.crypto.newhope;
131132
exports org.bouncycastle.pqc.crypto.ntru;
132133
exports org.bouncycastle.pqc.crypto.ntruprime;
@@ -136,6 +137,7 @@
136137
exports org.bouncycastle.pqc.crypto.sphincs;
137138
exports org.bouncycastle.pqc.crypto.sphincsplus;
138139
exports org.bouncycastle.pqc.crypto.slhdsa;
140+
exports org.bouncycastle.pqc.crypto.snova;
139141
exports org.bouncycastle.pqc.crypto.util;
140142
exports org.bouncycastle.pqc.crypto.xmss;
141143
exports org.bouncycastle.pqc.math.ntru;

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.0020;
30-
private static final String PROVIDER_INFO = "Bouncy Castle JSSE Provider Version 1.0.20";
29+
private static final double PROVIDER_VERSION = 1.0021;
30+
private static final String PROVIDER_INFO = "Bouncy Castle JSSE Provider Version 1.0.21";
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)