We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5aefed commit bc7420fCopy full SHA for bc7420f
src/field_10x26_impl.h
@@ -11,6 +11,14 @@
11
#include "field.h"
12
#include "modinv32_impl.h"
13
14
+/** See the comment at the top of field_5x52_impl.h for more details.
15
+ *
16
+ * Here, we represent field elements as 10 uint32_t's in base 2^26, where limbs can contain >26 bits.
17
+ * A magnitude M means:
18
+ * - 2*M*(2^22-1) is the max (inclusive) of the most significant limb
19
+ * - 2*M*(2^26-1) is the max (inclusive) of the remaining limbs
20
+ */
21
+
22
#ifdef VERIFY
23
static void secp256k1_fe_verify(const secp256k1_fe *a) {
24
const uint32_t *d = a->n;
0 commit comments