Skip to content

Commit

Permalink
Updated provider versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed Feb 3, 2019
1 parent cc18b6e commit 61041d7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
public final class BouncyCastleProvider extends Provider
implements ConfigurableProvider
{
private static String info = "BouncyCastle Security Provider v1.61b";
private static String info = "BouncyCastle Security Provider v1.61";

public static final String PROVIDER_NAME = "BC";

Expand Down Expand Up @@ -138,7 +138,7 @@ public final class BouncyCastleProvider extends Provider
*/
public BouncyCastleProvider()
{
super(PROVIDER_NAME, 1.6050, info);
super(PROVIDER_NAME, 1.61, 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.61b";
private static String info = "BouncyCastle Post-Quantum Security Provider v1.61";

public static String PROVIDER_NAME = "BCPQC";

Expand All @@ -47,7 +47,7 @@ public class BouncyCastlePQCProvider
*/
public BouncyCastlePQCProvider()
{
super(PROVIDER_NAME, 1.6050, info);
super(PROVIDER_NAME, 1.61, 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.60";
private static String info = "BouncyCastle Security Provider v1.61";

public static final String PROVIDER_NAME = "BC";

Expand Down Expand Up @@ -117,7 +117,7 @@ public final class BouncyCastleProvider extends Provider
*/
public BouncyCastleProvider()
{
super(PROVIDER_NAME, 1.60, info);
super(PROVIDER_NAME, 1.61, 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.60";
private static String info = "BouncyCastle Security Provider v1.61";

public static final String PROVIDER_NAME = "BC";

Expand Down Expand Up @@ -132,7 +132,7 @@ public final class BouncyCastleProvider extends Provider
*/
public BouncyCastleProvider()
{
super(PROVIDER_NAME, 1.60, info);
super(PROVIDER_NAME, 1.61, info);

AccessController.doPrivileged(new PrivilegedAction()
{
Expand Down

0 comments on commit 61041d7

Please sign in to comment.