diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-01-21 14:51:32 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-01-21 14:51:32 +0700 |
commit | 31525ff4a76773fa0cc85d4abcee7d5418cbd984 (patch) | |
tree | 0c3fa4c3b580f68c58f1476502fdaa1d25ec44f4 /crypto/src/util/BigIntegers.cs | |
parent | Bring Fp field element code mostly up-to-date with Java version (diff) | |
download | BouncyCastle.NET-ed25519-31525ff4a76773fa0cc85d4abcee7d5418cbd984.tar.xz |
Make static utility classes abstract instead of sealed
Add Arrays.GetHashCode for int[] Formatting
Diffstat (limited to 'crypto/src/util/BigIntegers.cs')
-rw-r--r-- | crypto/src/util/BigIntegers.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/crypto/src/util/BigIntegers.cs b/crypto/src/util/BigIntegers.cs index 9e15d2559..f2d0425cc 100644 --- a/crypto/src/util/BigIntegers.cs +++ b/crypto/src/util/BigIntegers.cs @@ -8,14 +8,10 @@ namespace Org.BouncyCastle.Utilities /** * BigInteger utilities. */ - public sealed class BigIntegers + public abstract class BigIntegers { private const int MaxIterations = 1000; - private BigIntegers() - { - } - /** * Return the passed in value as an unsigned byte array. * |