summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2015-09-06 17:40:54 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2015-09-06 17:40:54 +0700
commit17913b62ebcc11a32df5d9207a2daa06205cff01 (patch)
treec5749e37deb7072aea04ca12fb5e263557d3bf6d
parentMerge branch 'master' of git.bouncycastle.org:bc-csharp (diff)
downloadBouncyCastle.NET-ed25519-17913b62ebcc11a32df5d9207a2daa06205cff01.tar.xz
Fix class declaration
-rw-r--r--crypto/src/math/Primes.cs2
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;