From 5af9e09a87cc120e2f2da4fadc6b04685f96dda0 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Wed, 22 Jun 2022 22:08:13 +0700 Subject: Code cleanup --- crypto/src/math/ec/ECCurve.cs | 4 ++-- crypto/src/math/ec/custom/sec/SecT571FieldElement.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'crypto/src/math/ec') diff --git a/crypto/src/math/ec/ECCurve.cs b/crypto/src/math/ec/ECCurve.cs index 52d634cd2..838e407e3 100644 --- a/crypto/src/math/ec/ECCurve.cs +++ b/crypto/src/math/ec/ECCurve.cs @@ -843,14 +843,14 @@ namespace Org.BouncyCastle.Math.EC int AsInteger(string envVariable, int defaultValue) { - String v = Platform.GetEnvironmentVariable(envVariable); + string v = Platform.GetEnvironmentVariable(envVariable); if (v == null) { return defaultValue; } - return Int32.Parse(v); + return int.Parse(v); } } diff --git a/crypto/src/math/ec/custom/sec/SecT571FieldElement.cs b/crypto/src/math/ec/custom/sec/SecT571FieldElement.cs index 22edfe0a2..b9c581860 100644 --- a/crypto/src/math/ec/custom/sec/SecT571FieldElement.cs +++ b/crypto/src/math/ec/custom/sec/SecT571FieldElement.cs @@ -48,7 +48,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec return Nat576.ToBigInteger64(x); } - public override String FieldName + public override string FieldName { get { return "SecT571Field"; } } -- cgit 1.5.1