diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-09-06 17:40:54 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-09-06 17:40:54 +0700 |
commit | 17913b62ebcc11a32df5d9207a2daa06205cff01 (patch) | |
tree | c5749e37deb7072aea04ca12fb5e263557d3bf6d /crypto/src/math/Primes.cs | |
parent | Merge branch 'master' of git.bouncycastle.org:bc-csharp (diff) | |
download | BouncyCastle.NET-ed25519-17913b62ebcc11a32df5d9207a2daa06205cff01.tar.xz |
Fix class declaration
Diffstat (limited to 'crypto/src/math/Primes.cs')
-rw-r--r-- | crypto/src/math/Primes.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/Primes.cs b/crypto/src/math/Primes.cs index 55d739f34..420c3cc5a 100644 --- a/crypto/src/math/Primes.cs +++ b/crypto/src/math/Primes.cs @@ -9,7 +9,7 @@ namespace Org.BouncyCastle.Math /** * Utility methods for generating primes and testing for primality. */ - public static class Primes + public abstract class Primes { private static readonly BigInteger One = BigInteger.One; private static readonly BigInteger Two = BigInteger.Two; |