diff options
Diffstat (limited to 'crypto/src/math')
-rw-r--r-- | crypto/src/math/BigInteger.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/src/math/BigInteger.cs b/crypto/src/math/BigInteger.cs index a182c43e8..997f0bbea 100644 --- a/crypto/src/math/BigInteger.cs +++ b/crypto/src/math/BigInteger.cs @@ -134,6 +134,7 @@ namespace Org.BouncyCastle.Math public static readonly BigInteger One; public static readonly BigInteger Two; public static readonly BigInteger Three; + public static readonly BigInteger Four; public static readonly BigInteger Ten; //private readonly static byte[] BitCountTable = @@ -207,6 +208,7 @@ namespace Org.BouncyCastle.Math One = SMALL_CONSTANTS[1]; Two = SMALL_CONSTANTS[2]; Three = SMALL_CONSTANTS[3]; + Four = SMALL_CONSTANTS[4]; Ten = SMALL_CONSTANTS[10]; radix2 = ValueOf(2); |