Skip to content

Commit 0dd35f4

Browse files
committed
moved provider to 1.83.
1 parent 432969d commit 0dd35f4

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

bc-build.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# intended to hold user-specific settings that are *not* committed to
44
# the repository.
55

6-
release.suffix: 1.82
7-
release.name: 1.82
8-
release.version: 1.82
6+
release.suffix: 1.83
7+
release.name: 1.83
8+
release.version: 1.83
99
release.debug: false
1010

1111
mail.jar.home: ./libs/javax.mail-1.4.7.jar

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.83b";
81+
private static String info = "BouncyCastle Security Provider v1.83";
8282

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

@@ -172,7 +172,7 @@ public final class BouncyCastleProvider extends Provider
172172
*/
173173
public BouncyCastleProvider()
174174
{
175-
super(PROVIDER_NAME, 1.8299, info);
175+
super(PROVIDER_NAME, 1.8300, info);
176176

177177
AccessController.doPrivileged(new PrivilegedAction()
178178
{

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.83b";
25+
private static String info = "BouncyCastle Post-Quantum Security Provider v1.83";
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.8299, info);
54+
super(PROVIDER_NAME, 1.83, info);
5555

5656
AccessController.doPrivileged(new PrivilegedAction()
5757
{

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.82";
54+
private static String info = "BouncyCastle Security Provider v1.83";
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.8200, info);
138+
super(PROVIDER_NAME, 1.8300, info);
139139

140140
AccessController.doPrivileged(new PrivilegedAction()
141141
{

0 commit comments

Comments
 (0)