summaryrefslogtreecommitdiffstats
path: root/src/Mono.Math/NextPrimeFinder.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-07-20 07:01:58 -0600
committerAndrew Arnott <andrewarnott@gmail.com>2011-07-20 07:01:58 -0600
commit1328f88a36187d8aa5890a46e35af59c4df04d3f (patch)
treec42a3aad4aa21d39b91dcc87a912f8cb96c22c11 /src/Mono.Math/NextPrimeFinder.cs
parentd15895e626b73b6f96f561786b4b5c941c0a4bb1 (diff)
downloadDotNetOpenAuth-1328f88a36187d8aa5890a46e35af59c4df04d3f.zip
DotNetOpenAuth-1328f88a36187d8aa5890a46e35af59c4df04d3f.tar.gz
DotNetOpenAuth-1328f88a36187d8aa5890a46e35af59c4df04d3f.tar.bz2
Splitting up the OpenID profile into OpenID RP and OP. The core OpenID DLL compiles, but the RP and OP ones do not.
Diffstat (limited to 'src/Mono.Math/NextPrimeFinder.cs')
-rw-r--r--src/Mono.Math/NextPrimeFinder.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/Mono.Math/NextPrimeFinder.cs b/src/Mono.Math/NextPrimeFinder.cs
new file mode 100644
index 0000000..19433f2
--- /dev/null
+++ b/src/Mono.Math/NextPrimeFinder.cs
@@ -0,0 +1,29 @@
+// <auto-generated />
+//
+// Mono.Math.Prime.Generator.NextPrimeFinder.cs - Prime Generator
+//
+// Authors:
+// Ben Maurer
+//
+// Copyright (c) 2003 Ben Maurer. All rights reserved
+//
+
+using System;
+
+namespace Mono.Math.Prime.Generator {
+
+ /// <summary>
+ /// Finds the next prime after a given number.
+ /// </summary>
+ //[CLSCompliant(false)]
+ internal class NextPrimeFinder : SequentialSearchPrimeGeneratorBase {
+
+ protected override BigInteger GenerateSearchBase (int bits, object Context)
+ {
+ if (Context == null) throw new ArgumentNullException ("Context");
+ BigInteger ret = new BigInteger ((BigInteger)Context);
+ ret.setBit (0);
+ return ret;
+ }
+ }
+}