c38bb3c7b34e252bb26edf1e49c404124442d763
[u/mdw/catacomb] / mp.h
1 /* -*-c-*-
2 *
3 * $Id: mp.h,v 1.17 2003/05/16 09:09:24 mdw Exp $
4 *
5 * Simple multiprecision arithmetic
6 *
7 * (c) 1999 Straylight/Edgeware
8 */
9
10 /*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of Catacomb.
13 *
14 * Catacomb is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
19 * Catacomb is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
23 *
24 * You should have received a copy of the GNU Library General Public
25 * License along with Catacomb; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
28 */
29
30 /*----- Revision history --------------------------------------------------*
31 *
32 * $Log: mp.h,v $
33 * Revision 1.17 2003/05/16 09:09:24 mdw
34 * Fix @mp_lsl2c@. Turns out to be surprisingly tricky.
35 *
36 * Revision 1.16 2002/10/15 22:57:22 mdw
37 * Handy new comparison macros.
38 *
39 * Revision 1.15 2002/10/15 19:18:31 mdw
40 * New operation to negate numbers.
41 *
42 * Revision 1.14 2002/10/15 00:19:40 mdw
43 * Bit setting and clearing functions.
44 *
45 * Revision 1.13 2002/10/06 22:52:50 mdw
46 * Pile of changes for supporting two's complement properly.
47 *
48 * Revision 1.12 2001/06/16 12:57:43 mdw
49 * Move the @mpmont_factor@ structure and rename it now that it's used for
50 * Barrett simultaneous exponentiation too.
51 *
52 * Revision 1.11 2001/04/03 19:36:05 mdw
53 * Add some simple bitwise operations so that Perl can use them.
54 *
55 * Revision 1.10 2000/10/08 12:03:16 mdw
56 * Provide @mp_eq@ and @MP_EQ@ for rapidly testing equality of two
57 * integers.
58 *
59 * Revision 1.9 2000/07/29 17:03:31 mdw
60 * Add support for left-to-right bitscanning, for use in modular
61 * exponentiation.
62 *
63 * Revision 1.8 2000/06/22 19:02:01 mdw
64 * Add new functions.
65 *
66 * Revision 1.7 2000/06/17 11:45:09 mdw
67 * Major memory management overhaul. Added arena support. Use the secure
68 * arena for secret integers. Replace and improve the MP management macros
69 * (e.g., replace MP_MODIFY by MP_DEST).
70 *
71 * Revision 1.6 1999/12/10 23:19:46 mdw
72 * Minor bugfixes. New interface for suggested destinations.
73 *
74 * Revision 1.5 1999/11/22 20:50:37 mdw
75 * Add support for computing Jacobi symbols.
76 *
77 * Revision 1.4 1999/11/21 22:13:02 mdw
78 * Add mp version of MPX_BITS.
79 *
80 * Revision 1.3 1999/11/19 13:19:14 mdw
81 * Fix const annotation.
82 *
83 * Revision 1.2 1999/11/17 18:02:16 mdw
84 * New multiprecision integer arithmetic suite.
85 *
86 */
87
88 #ifndef CATACOMB_MP_H
89 #define CATACOMB_MP_H
90
91 #ifdef __cplusplus
92 extern "C" {
93 #endif
94
95 /*----- Header files ------------------------------------------------------*/
96
97 #include <assert.h>
98 #include <string.h>
99
100 #include <mLib/sub.h>
101
102 #ifndef CATACOMB_MPW_H
103 # include "mpw.h"
104 #endif
105
106 #ifndef CATACOMB_ARENA_H
107 # include "arena.h"
108 #endif
109
110 #ifndef CATACOMB_MPARENA_H
111 # include "mparena.h"
112 #endif
113
114 #ifndef CATACOMB_MPX_H
115 # include "mpx.h"
116 #endif
117
118 /*----- Data structures ---------------------------------------------------*/
119
120 /* --- A multiprecision integer --- */
121
122 typedef struct mp {
123 mpw *v, *vl; /* Vector of digits, current limit */
124 size_t sz; /* Size of digit buffer in words */
125 mparena *a; /* Arena for buffer allocation */
126 unsigned f; /* Flags (see below) */
127 unsigned ref; /* Reference counter */
128 } mp;
129
130 #define MP_NEG 1u /* Negative (signed magnitude) */
131 #define MP_BURN 2u /* Secret (viral flag) */
132 #define MP_CONST 4u /* Uses strange memory allocation */
133 #define MP_UNDEF 8u /* Contains nothing interesting */
134 #define MP_DESTROYED 16u /* Has been destroyed */
135
136 /* --- A factor for simultaneous exponentation --- *
137 *
138 * Used by the Montgomery and Barrett exponentiators.
139 */
140
141 typedef struct mp_expfactor {
142 mp *base;
143 mp *exp;
144 } mp_expfactor;
145
146 /*----- Useful constants --------------------------------------------------*/
147
148 extern mp mp_const[];
149
150 #define MP_ZERO (&mp_const[0])
151 #define MP_ONE (&mp_const[1])
152 #define MP_TWO (&mp_const[2])
153 #define MP_THREE (&mp_const[3])
154 #define MP_FOUR (&mp_const[4])
155 #define MP_FIVE (&mp_const[5])
156 #define MP_TEN (&mp_const[6])
157 #define MP_256 (&mp_const[7])
158 #define MP_MONE (&mp_const[8])
159
160 #define MP_NEW ((mp *)0)
161 #define MP_NEWSEC (&mp_const[9])
162
163 /*----- Trivial macros ----------------------------------------------------*/
164
165 /* --- @MP_LEN@ --- *
166 *
167 * Arguments: @mp *m@ = pointer to a multiprecision integer
168 *
169 * Returns: Length of the integer, in words.
170 */
171
172 #define MP_LEN(m) ((m)->vl - ((m)->v))
173
174 /*----- Memory management and reference counting --------------------------*/
175
176 /* --- @mp_new@ --- *
177 *
178 * Arguments: @size_t sz@ = size of vector required
179 * @unsigned f@ = flags to set
180 *
181 * Returns: Pointer to a new MP structure.
182 *
183 * Use: Allocates a new multiprecision integer. The data space is
184 * allocated from either the standard global or secret arena,
185 * depending on the initial flags requested.
186 */
187
188 extern mp *mp_new(size_t /*sz*/, unsigned /*f*/);
189
190 /* --- @mp_create@ --- *
191 *
192 * Arguments: @size_t sz@ = size of vector required
193 *
194 * Returns: Pointer to pristine new MP structure with enough memory
195 * bolted onto it.
196 *
197 * Use: Creates a new multiprecision integer with indeterminate
198 * contents. The integer has a single reference.
199 */
200
201 extern mp *mp_create(size_t /*sz*/);
202
203 /* --- @mp_createsecure@ --- *
204 *
205 * Arguments: @size_t sz@ = size of vector required
206 *
207 * Returns: Pointer to pristine new MP structure with enough memory
208 * bolted onto it.
209 *
210 * Use: Creates a new multiprecision integer with indeterminate
211 * contents. The integer has a single reference. The integer's
212 * data space is allocated from the secure arena. Its burn flag
213 * is set.
214 */
215
216 extern mp *mp_createsecure(size_t /*sz*/);
217
218 /* --- @mp_build@ --- *
219 *
220 * Arguments: @mp *m@ = pointer to an MP block to fill in
221 * @mpw *v@ = pointer to a word array
222 * @mpw *vl@ = pointer just past end of array
223 *
224 * Returns: ---
225 *
226 * Use: Creates a multiprecision integer representing some smallish
227 * number. You must provide storage for the number and dispose
228 * of it when you've finished with it. The number is marked as
229 * constant while it exists.
230 */
231
232 extern void mp_build(mp */*m*/, mpw */*v*/, mpw */*vl*/);
233
234 /* --- @mp_destroy@ --- *
235 *
236 * Arguments: @mp *m@ = pointer to a multiprecision integer
237 *
238 * Returns: ---
239 *
240 * Use: Destroys a multiprecision integer. The reference count isn't
241 * checked. Don't use this function if you don't know what
242 * you're doing: use @mp_drop@ instead.
243 */
244
245 extern void mp_destroy(mp */*m*/);
246
247 /* --- @mp_copy@ --- *
248 *
249 * Arguments: @mp *m@ = pointer to a multiprecision integer
250 *
251 * Returns: A copy of the given multiprecision integer.
252 *
253 * Use: Copies the given integer. In fact you just get another
254 * reference to the same old one again.
255 */
256
257 extern mp *mp_copy(mp */*m*/);
258
259 #define MP_COPY(m) ((m)->ref++, (m))
260
261 /* --- @mp_drop@ --- *
262 *
263 * Arguments: @mp *m@ = pointer to a multiprecision integer
264 *
265 * Returns: ---
266 *
267 * Use: Drops a reference to an integer which isn't wanted any more.
268 * If there are no more references, the integer is destroyed.
269 */
270
271 extern void mp_drop(mp */*m*/);
272
273 #define MP_DROP(m) do { \
274 mp *_mm = (m); \
275 _mm->ref--; \
276 if (_mm->ref == 0 && !(_mm->f & MP_CONST)) \
277 mp_destroy(_mm); \
278 } while (0)
279
280 /* --- @mp_split@ --- *
281 *
282 * Arguments: @mp *m@ = pointer to a multiprecision integer
283 *
284 * Returns: A reference to the same integer, possibly with a different
285 * address.
286 *
287 * Use: Splits off a modifiable version of the integer referred to.
288 */
289
290 extern mp *mp_split(mp */*m*/);
291
292 #define MP_SPLIT(m) do { \
293 mp *_m = (m); \
294 if ((_m->f & MP_CONST) || _m->ref > 1) { \
295 size_t _len = MP_LEN(_m); \
296 mp *_mm = mp_new(_len, _m->f); \
297 if (!(_m->f & MP_UNDEF)) \
298 memcpy(_mm->v, _m->v, MPWS(_len)); \
299 _m->ref--; \
300 _m = _mm; \
301 } \
302 (m) = _m; \
303 } while (0)
304
305 /* --- @mp_resize@ --- *
306 *
307 * Arguments: @mp *m@ = pointer to a multiprecision integer
308 * @size_t sz@ = new size
309 *
310 * Returns: ---
311 *
312 * Use: Resizes the vector containing the integer's digits. The new
313 * size must be at least as large as the current integer's
314 * length. This isn't really intended for client use.
315 */
316
317 extern void mp_resize(mp */*m*/, size_t /*sz*/);
318
319 #define MP_RESIZE(m, ssz) do { \
320 mp *_m = (m); \
321 size_t _sz = (ssz); \
322 mparena *_a = (_m->f & MP_BURN) ? MPARENA_SECURE : MPARENA_GLOBAL; \
323 mpw *_v; \
324 size_t _len = MP_LEN(_m); \
325 assert(((void)"can't make size less than length", _sz >= _len)); \
326 _v = mpalloc(_a, _sz); \
327 if (!(_m->f & MP_UNDEF)) \
328 memcpy(_v, _m->v, MPWS(_len)); \
329 if (_m->f & MP_BURN) \
330 memset(_m->v, 0, MPWS(_m->sz)); \
331 mpfree(_m->a, _m->v); \
332 _m->a = _a; \
333 _m->v = _v; \
334 _m->vl = _v + _len; \
335 } while (0)
336
337 /* --- @mp_ensure@ --- *
338 *
339 * Arguments: @mp *m@ = pointer to a multiprecision integer
340 * @size_t sz@ = required size
341 *
342 * Returns: ---
343 *
344 * Use: Ensures that the integer has enough space for @sz@ digits.
345 * The value is not changed.
346 */
347
348 extern void mp_ensure(mp */*m*/, size_t /*sz*/);
349
350 #define MP_ENSURE(m, ssz) do { \
351 mp *_m = (m); \
352 size_t _ssz = (ssz); \
353 size_t _len = MP_LEN(_m); \
354 if (_ssz >= _len) { \
355 if (_ssz > _m->sz) \
356 mp_resize(_m, _ssz); \
357 if (!(_m->f & MP_UNDEF) && _ssz > _len) \
358 memset(_m->vl, 0, MPWS(_ssz - _len)); \
359 _m->vl = _m->v + _ssz; \
360 } \
361 } while (0)
362
363 /* --- @mp_dest@ --- *
364 *
365 * Arguments: @mp *m@ = a suggested destination integer
366 * @size_t sz@ = size required for result, in digits
367 * @unsigned f@ = various flags
368 *
369 * Returns: A pointer to an appropriate destination.
370 *
371 * Use: Converts a suggested destination into a real destination with
372 * the required properties. If the real destination is @d@,
373 * then the following properties will hold:
374 *
375 * * @d@ will have exactly one reference.
376 *
377 * * If @m@ is not @MP_NEW@, then the contents of @m@ will not
378 * change, unless @f@ has the @MP_UNDEF@ flag set.
379 *
380 * * If @m@ is not @MP_NEW@, then he reference count of @m@ on
381 * entry is equal to the sum of the counts of @d@ and @m@ on
382 * exit.
383 *
384 * * The size of @d@ will be at least @sz@.
385 *
386 * * If @f@ has the @MP_BURN@ flag set, then @d@ will be
387 * allocated from @MPARENA_SECURE@.
388 *
389 * Understanding this function is crucial to using Catacomb's
390 * multiprecision integer library effectively.
391 */
392
393 extern mp *mp_dest(mp */*m*/, size_t /*sz*/, unsigned /*f*/);
394
395 #define MP_DEST(m, ssz, f) do { \
396 mp *_m = (m); \
397 size_t _ssz = (ssz); \
398 unsigned _f = (f); \
399 _m = mp_dest(_m, _ssz, _f); \
400 (m) = _m; \
401 } while (0)
402
403 /*----- Size manipulation -------------------------------------------------*/
404
405 /* --- @mp_shrink@ --- *
406 *
407 * Arguments: @mp *m@ = pointer to a multiprecision integer
408 *
409 * Returns: ---
410 *
411 * Use: Reduces the recorded length of an integer. This doesn't
412 * reduce the amount of memory used, although it can improve
413 * performance a bit. To reduce memory, use @mp_minimize@
414 * instead. This can't change the value of an integer, and is
415 * therefore safe to use even when there are multiple
416 * references.
417 */
418
419 extern void mp_shrink(mp */*m*/);
420
421 #define MP_SHRINK(m) do { \
422 mp *_mm = (m); \
423 MPX_SHRINK(_mm->v, _mm->vl); \
424 if (!MP_LEN(_mm)) \
425 _mm->f &= ~MP_NEG; \
426 } while (0)
427
428 /* --- @mp_minimize@ --- *
429 *
430 * Arguments: @mp *m@ = pointer to a multiprecision integer
431 *
432 * Returns: ---
433 *
434 * Use: Reduces the amount of memory an integer uses. It's best to
435 * do this to numbers which aren't going to change in the
436 * future.
437 */
438
439 extern void mp_minimize(mp */*m*/);
440
441 /*----- Bit scanning ------------------------------------------------------*/
442
443 #ifndef CATACOMB_MPSCAN_H
444 # include "mpscan.h"
445 #endif
446
447 /* --- @mp_scan@ --- *
448 *
449 * Arguments: @mpscan *sc@ = pointer to bitscanner block
450 * @const mp *m@ = pointer to a multiprecision integer
451 *
452 * Returns: ---
453 *
454 * Use: Initializes a bitscanner on a multiprecision integer.
455 */
456
457 extern void mp_scan(mpscan */*sc*/, const mp */*m*/);
458
459 #define MP_SCAN(sc, m) do { \
460 const mp *_mm = (m); \
461 mpscan *_sc = (sc); \
462 MPSCAN_INITX(_sc, _mm->v, _mm->vl); \
463 } while (0)
464
465 /* --- @mp_rscan@ --- *
466 *
467 * Arguments: @mpscan *sc@ = pointer to bitscanner block
468 * @const mp *m@ = pointer to a multiprecision integer
469 *
470 * Returns: ---
471 *
472 * Use: Initializes a reverse bitscanner on a multiprecision
473 * integer.
474 */
475
476 extern void mp_rscan(mpscan */*sc*/, const mp */*m*/);
477
478 #define MP_RSCAN(sc, m) do { \
479 const mp *_mm = (m); \
480 mpscan *_sc = (sc); \
481 MPSCAN_RINITX(_sc, _mm->v, _mm->vl); \
482 } while (0)
483
484 /* --- Other bitscanning aliases --- */
485
486 #define mp_step mpscan_step
487 #define mp_bit mpscan_bit
488 #define mp_rstep mpscan_rstep
489 #define mp_rbit mpscan_rbit
490
491 #define MP_STEP MPSCAN_STEP
492 #define MP_BIT MPSCAN_BIT
493 #define MP_RSTEP MPSCAN_RSTEP
494 #define MP_RBIT MPSCAN_RBIT
495
496 /*----- Loading and storing -----------------------------------------------*/
497
498 /* --- @mp_octets@ --- *
499 *
500 * Arguments: @const mp *m@ = a multiprecision integer
501 *
502 * Returns: The number of octets required to represent @m@.
503 *
504 * Use: Calculates the external storage required for a multiprecision
505 * integer.
506 */
507
508 extern size_t mp_octets(const mp */*m*/);
509
510 /* --- @mp_octets2c@ --- *
511 *
512 * Arguments: @const mp *m@ = a multiprecision integer
513 *
514 * Returns: The number of octets required to represent @m@.
515 *
516 * Use: Calculates the external storage required for a multiprecision
517 * integer represented as two's complement.
518 */
519
520 extern size_t mp_octets2c(const mp */*m*/);
521
522 /* --- @mp_bits@ --- *
523 *
524 * Arguments: @const mp *m@ = a multiprecision integer
525 *
526 * Returns: The number of bits required to represent @m@.
527 *
528 * Use: Calculates the external storage required for a multiprecision
529 * integer.
530 */
531
532 extern unsigned long mp_bits(const mp */*m*/);
533
534 /* --- @mp_loadl@ --- *
535 *
536 * Arguments: @mp *d@ = destination
537 * @const void *pv@ = pointer to source data
538 * @size_t sz@ = size of the source data
539 *
540 * Returns: Resulting multiprecision number.
541 *
542 * Use: Loads a multiprecision number from an array of octets. The
543 * first byte in the array is the least significant. More
544 * formally, if the bytes are %$b_0, b_1, \ldots, b_{n-1}$%
545 * then the result is %$N = \sum_{0 \le i < n} b_i 2^{8i}$%.
546 */
547
548 extern mp *mp_loadl(mp */*d*/, const void */*pv*/, size_t /*sz*/);
549
550 /* --- @mp_storel@ --- *
551 *
552 * Arguments: @const mp *m@ = source
553 * @void *pv@ = pointer to output array
554 * @size_t sz@ = size of the output array
555 *
556 * Returns: ---
557 *
558 * Use: Stores a multiprecision number in an array of octets. The
559 * first byte in the array is the least significant. If the
560 * array is too small to represent the number, high-order bits
561 * are truncated; if the array is too large, high order bytes
562 * are filled with zeros. More formally, if the number is
563 * %$N = \sum{0 \le i} b_i 2^{8i}$% where %$0 \le b_i < 256$%,
564 * then the array is %$b_0, b_1, \ldots, b_{n-1}$%.
565 */
566
567 extern void mp_storel(const mp */*m*/, void */*pv*/, size_t /*sz*/);
568
569 /* --- @mp_loadb@ --- *
570 *
571 * Arguments: @mp *d@ = destination
572 * @const void *pv@ = pointer to source data
573 * @size_t sz@ = size of the source data
574 *
575 * Returns: Resulting multiprecision number.
576 *
577 * Use: Loads a multiprecision number from an array of octets. The
578 * last byte in the array is the least significant. More
579 * formally, if the bytes are %$b_{n-1}, b_{n-2}, \ldots, b_0$%
580 * then the result is %$N = \sum_{0 \le i < n} b_i 2^{8i}$%.
581 */
582
583 extern mp *mp_loadb(mp */*d*/, const void */*pv*/, size_t /*sz*/);
584
585 /* --- @mp_storeb@ --- *
586 *
587 * Arguments: @const mp *m@ = source
588 * @void *pv@ = pointer to output array
589 * @size_t sz@ = size of the output array
590 *
591 * Returns: ---
592 *
593 * Use: Stores a multiprecision number in an array of octets. The
594 * last byte in the array is the least significant. If the
595 * array is too small to represent the number, high-order bits
596 * are truncated; if the array is too large, high order bytes
597 * are filled with zeros. More formally, if the number is
598 * %$N = \sum{0 \le i} b_i 2^{8i}$% where %$0 \le b_i < 256$%,
599 * then the array is %$b_{n-1}, b_{n-2}, \ldots, b_0$%.
600 */
601
602 extern void mp_storeb(const mp */*m*/, void */*pv*/, size_t /*sz*/);
603
604 /* --- @mp_loadl2c@ --- *
605 *
606 * Arguments: @mp *d@ = destination
607 * @const void *pv@ = pointer to source data
608 * @size_t sz@ = size of the source data
609 *
610 * Returns: Resulting multiprecision number.
611 *
612 * Use: Loads a multiprecision number from an array of octets as
613 * two's complement. The first byte in the array is the least
614 * significant.
615 */
616
617 extern mp *mp_loadl2c(mp */*d*/, const void */*pv*/, size_t /*sz*/);
618
619 /* --- @mp_storel2c@ --- *
620 *
621 * Arguments: @const mp *m@ = source
622 * @void *pv@ = pointer to output array
623 * @size_t sz@ = size of the output array
624 *
625 * Returns: ---
626 *
627 * Use: Stores a multiprecision number in an array of octets as two's
628 * complement. The first byte in the array is the least
629 * significant. If the array is too small to represent the
630 * number, high-order bits are truncated; if the array is too
631 * large, high order bytes are sign-extended.
632 */
633
634 extern void mp_storel2c(const mp */*m*/, void */*pv*/, size_t /*sz*/);
635
636 /* --- @mp_loadb2c@ --- *
637 *
638 * Arguments: @mp *d@ = destination
639 * @const void *pv@ = pointer to source data
640 * @size_t sz@ = size of the source data
641 *
642 * Returns: Resulting multiprecision number.
643 *
644 * Use: Loads a multiprecision number from an array of octets as
645 * two's complement. The last byte in the array is the least
646 * significant.
647 */
648
649 extern mp *mp_loadb2c(mp */*d*/, const void */*pv*/, size_t /*sz*/);
650
651 /* --- @mp_storeb2c@ --- *
652 *
653 * Arguments: @const mp *m@ = source
654 * @void *pv@ = pointer to output array
655 * @size_t sz@ = size of the output array
656 *
657 * Returns: ---
658 *
659 * Use: Stores a multiprecision number in an array of octets, as
660 * two's complement. The last byte in the array is the least
661 * significant. If the array is too small to represent the
662 * number, high-order bits are truncated; if the array is too
663 * large, high order bytes are sign-extended.
664 */
665
666 extern void mp_storeb2c(const mp */*m*/, void */*pv*/, size_t /*sz*/);
667
668 /*----- Bit operations ----------------------------------------------------*/
669
670 /* --- @mp_not@ --- *
671 *
672 * Arguments: @mp *d@ = destination
673 * @mp *a@ = source
674 *
675 * Returns: The bitwise complement of the source.
676 */
677
678 extern mp *mp_not(mp */*d*/, mp */*a*/);
679
680 /* --- @mp_bitop@ --- *
681 *
682 * Arguments: @mp *d@ = destination
683 * @mp *a, *b@ = sources
684 *
685 * Returns: The result of the given bitwise operation. These functions
686 * don't handle negative numbers at all sensibly. For that, use
687 * the @...2c@ variants. The functions are named after the
688 * truth tables they generate:
689 *
690 * a: 0011
691 * b: 0101
692 * @mpx_bitXXXX@
693 */
694
695 #define MP_BITDECL(string) \
696 extern mp *mp_bit##string(mp */*d*/, mp */*a*/, mp */*b*/);
697 MPX_DOBIN(MP_BITDECL)
698
699 /* --- @mp_[n]and@, @mp_[n]or@, @mp_[n]xor@, @mp_not@ --- *
700 *
701 * Synonyms for the commonly-used functions.
702 */
703
704 #define mp_and mp_bit0001
705 #define mp_or mp_bit0111
706 #define mp_nand mp_bit1110
707 #define mp_nor mp_bit1000
708 #define mp_xor mp_bit0110
709
710 /* --- @mp_testbit@ --- *
711 *
712 * Arguments: @mp *x@ = a large integer
713 * @unsigned long n@ = which bit to test
714 *
715 * Returns: Nonzero if the bit is set, zero if not.
716 */
717
718 extern int mp_testbit(mp */*x*/, unsigned long /*n*/);
719
720 /* --- @mp_setbit@, @mp_clearbit@ --- *
721 *
722 * Arguments: @mp *d@ = a destination
723 * @mp *x@ = a large integer
724 * @unsigned long n@ = which bit to modify
725 *
726 * Returns: The argument @x@, with the appropriate bit set or cleared.
727 */
728
729 extern mp *mp_setbit(mp */*d*/, mp */*x*/, unsigned long /*n*/);
730 extern mp *mp_clearbit(mp */*d*/, mp */*x*/, unsigned long /*n*/);
731
732 /* --- @mp_lsl@, @mp_lslc@, @mp_lsr@ --- *
733 *
734 * Arguments: @mp *d@ = destination
735 * @mp *a@ = source
736 * @size_t n@ = number of bits to move
737 *
738 * Returns: Result, @a@ shifted left or right by @n@.
739 *
740 * Use: Bitwise shift operators. @mp_lslc@ fills the bits introduced
741 * on the right with ones instead of zeroes: it's used
742 * internally by @mp_lsl2c@, though it may be useful on its
743 * own.
744 */
745
746 extern mp *mp_lsl(mp */*d*/, mp */*a*/, size_t /*n*/);
747 extern mp *mp_lslc(mp */*d*/, mp */*a*/, size_t /*n*/);
748 extern mp *mp_lsr(mp */*d*/, mp */*a*/, size_t /*n*/);
749
750 /* --- @mp_not2c@ --- *
751 *
752 * Arguments: @mp *d@ = destination
753 * @mp *a@ = source
754 *
755 * Returns: The sign-extended complement of the argument.
756 */
757
758 extern mp *mp_not2c(mp */*d*/, mp */*a*/);
759
760 /* --- @mp_bitop2c@ --- *
761 *
762 * Arguments: @mp *d@ = destination
763 * @mp *a, *b@ = sources
764 *
765 * Returns: The result of the given bitwise operation. Negative numbers
766 * are treated as two's complement, sign-extended infinitely to
767 * the left. The functions are named after the truth tables
768 * they generate:
769 *
770 * a: 0011
771 * b: 0101
772 * @mpx_bitXXXX@
773 */
774
775 #define MP_BIT2CDECL(string) \
776 extern mp *mp_bit##string##2c(mp */*d*/, mp */*a*/, mp */*b*/);
777 MPX_DOBIN(MP_BIT2CDECL)
778
779 /* --- @mp_[n]and@, @mp_[n]or@, @mp_[n]xor@, @mp_not@ --- *
780 *
781 * Synonyms for the commonly-used functions.
782 */
783
784 #define mp_and2c mp_bit00012c
785 #define mp_or2c mp_bit01112c
786 #define mp_nand2c mp_bit11102c
787 #define mp_nor2c mp_bit10002c
788 #define mp_xor2c mp_bit01102c
789
790 /* --- @mp_lsl2c@, @mp_lsr2c@ --- *
791 *
792 * Arguments: @mp *d@ = destination
793 * @mp *a@ = source
794 * @size_t n@ = number of bits to move
795 *
796 * Returns: Result, @a@ shifted left or right by @n@. Handles the
797 * pretence of sign-extension for negative numbers.
798 */
799
800 extern mp *mp_lsl2c(mp */*d*/, mp */*a*/, size_t /*n*/);
801 extern mp *mp_lsr2c(mp */*d*/, mp */*a*/, size_t /*n*/);
802
803 /* --- @mp_testbit2c@ --- *
804 *
805 * Arguments: @mp *x@ = a large integer
806 * @unsigned long n@ = which bit to test
807 *
808 * Returns: Nonzero if the bit is set, zero if not. Fakes up two's
809 * complement representation.
810 */
811
812 extern int mp_testbit2c(mp */*x*/, unsigned long /*n*/);
813
814 /* --- @mp_setbit2c@, @mp_clearbit2c@ --- *
815 *
816 * Arguments: @mp *d@ = a destination
817 * @mp *x@ = a large integer
818 * @unsigned long n@ = which bit to modify
819 *
820 * Returns: The argument @x@, with the appropriate bit set or cleared.
821 * Fakes up two's complement representation.
822 */
823
824 extern mp *mp_setbit2c(mp */*d*/, mp */*x*/, unsigned long /*n*/);
825 extern mp *mp_clearbit2c(mp */*d*/, mp */*x*/, unsigned long /*n*/);
826
827 /*----- Comparisons -------------------------------------------------------*/
828
829 /* --- @mp_eq@ --- *
830 *
831 * Arguments: @const mp *a, *b@ = two numbers
832 *
833 * Returns: Nonzero if the numbers are equal.
834 */
835
836 extern int mp_eq(const mp */*a*/, const mp */*b*/);
837
838 #define MP_EQ(a, b) \
839 ((((a)->f ^ (b)->f) & MP_NEG) == 0 && \
840 mpx_ueq((a)->v, (a)->vl, (b)->v, (b)->vl))
841
842 /* --- @mp_cmp@ --- *
843 *
844 * Arguments: @const mp *a, *b@ = two numbers
845 *
846 * Returns: Less than, equal to or greater than zero, according to
847 * whether @a@ is less than, equal to or greater than @b@.
848 */
849
850 extern int mp_cmp(const mp */*a*/, const mp */*b*/);
851
852 #define MP_CMP(a, op, b) (mp_cmp((a), (b)) op 0)
853
854 /* --- Other handy macros --- */
855
856 #define MP_ISNEG(x) ((x)->f & MP_NEG)
857 #define MP_ISZERO(x) MP_EQ((x), MP_ZERO)
858 #define MP_ISPOS(x) (!MP_ISNEG(x) && !MP_ISZERO(x))
859
860 /*----- Arithmetic operations ---------------------------------------------*/
861
862 /* --- @mp_neg@ --- *
863 *
864 * Arguments: @mp *d@ = destination
865 * @mp *a@ = argument
866 *
867 * Returns: The negation of the argument.
868 *
869 * Use: Negates its argument.
870 */
871
872 extern mp *mp_neg(mp */*d*/, mp */*a*/);
873
874 /* --- @mp_add@ --- *
875 *
876 * Arguments: @mp *d@ = destination
877 * @mp *a, *b@ = sources
878 *
879 * Returns: Result, @a@ added to @b@.
880 */
881
882 extern mp *mp_add(mp */*d*/, mp */*a*/, mp */*b*/);
883
884 /* --- @mp_sub@ --- *
885 *
886 * Arguments: @mp *d@ = destination
887 * @mp *a, *b@ = sources
888 *
889 * Returns: Result, @b@ subtracted from @a@.
890 */
891
892 extern mp *mp_sub(mp */*d*/, mp */*a*/, mp */*b*/);
893
894 /* --- @mp_mul@ --- *
895 *
896 * Arguments: @mp *d@ = destination
897 * @mp *a, *b@ = sources
898 *
899 * Returns: Result, @a@ multiplied by @b@.
900 */
901
902 extern mp *mp_mul(mp */*d*/, mp */*a*/, mp */*b*/);
903
904 /* --- @mp_sqr@ --- *
905 *
906 * Arguments: @mp *d@ = destination
907 * @mp *a@ = source
908 *
909 * Returns: Result, @a@ squared.
910 */
911
912 extern mp *mp_sqr(mp */*d*/, mp */*a*/);
913
914 /* --- @mp_div@ --- *
915 *
916 * Arguments: @mp **qq, **rr@ = destination, quotient and remainder
917 * @mp *a, *b@ = sources
918 *
919 * Use: Calculates the quotient and remainder when @a@ is divided by
920 * @b@.
921 */
922
923 extern void mp_div(mp **/*qq*/, mp **/*rr*/, mp */*a*/, mp */*b*/);
924
925 /* --- @mp_odd@ --- *
926 *
927 * Arguments: @mp *d@ = pointer to destination integer
928 * @mp *m@ = pointer to source integer
929 * @size_t *s@ = where to store the power of 2
930 *
931 * Returns: An odd integer integer %$t$% such that %$m = 2^s t$%.
932 *
933 * Use: Computes a power of two and an odd integer which, when
934 * multiplied, give a specified result. This sort of thing is
935 * useful in number theory quite often.
936 */
937
938 extern mp *mp_odd(mp */*d*/, mp */*m*/, size_t */*s*/);
939
940 /*----- More advanced algorithms ------------------------------------------*/
941
942 /* --- @mp_sqrt@ --- *
943 *
944 * Arguments: @mp *d@ = pointer to destination integer
945 * @mp *a@ = (nonnegative) integer to take square root of
946 *
947 * Returns: The largest integer %$x$% such that %$x^2 \le a$%.
948 *
949 * Use: Computes integer square roots.
950 *
951 * The current implementation isn't very good: it uses the
952 * Newton-Raphson method to find an approximation to %$a$%. If
953 * there's any demand for a better version, I'll write one.
954 */
955
956 extern mp *mp_sqrt(mp */*d*/, mp */*a*/);
957
958 /* --- @mp_gcd@ --- *
959 *
960 * Arguments: @mp **gcd, **xx, **yy@ = where to write the results
961 * @mp *a, *b@ = sources (must be nonzero)
962 *
963 * Returns: ---
964 *
965 * Use: Calculates @gcd(a, b)@, and two numbers @x@ and @y@ such that
966 * @ax + by = gcd(a, b)@. This is useful for computing modular
967 * inverses. Neither @a@ nor @b@ may be zero.
968 */
969
970 extern void mp_gcd(mp **/*gcd*/, mp **/*xx*/, mp **/*yy*/,
971 mp */*a*/, mp */*b*/);
972
973 /* --- @mp_jacobi@ --- *
974 *
975 * Arguments: @mp *a@ = an integer less than @n@
976 * @mp *n@ = an odd integer
977 *
978 * Returns: @-1@, @0@ or @1@ -- the Jacobi symbol %$J(a, n)$%.
979 *
980 * Use: Computes the Jacobi symbol. If @n@ is prime, this is the
981 * Legendre symbol and is equal to 1 if and only if @a@ is a
982 * quadratic residue mod @n@. The result is zero if and only if
983 * @a@ and @n@ have a common factor greater than one.
984 */
985
986 extern int mp_jacobi(mp */*a*/, mp */*n*/);
987
988 /* --- @mp_modsqrt@ --- *
989 *
990 * Arguments: @mp *d@ = destination integer
991 * @mp *a@ = source integer
992 * @mp *p@ = modulus (must be prime)
993 *
994 * Returns: If %$a$% is a quadratic residue, a square root of %$a$%; else
995 * a null pointer.
996 *
997 * Use: Returns an integer %$x$% such that %$x^2 \equiv a \pmod{p}$%,
998 * if one exists; else a null pointer. This function will not
999 * work if %$p$% is composite: you must factor the modulus, take
1000 * a square root mod each factor, and recombine the results
1001 * using the Chinese Remainder Theorem.
1002 */
1003
1004 extern mp *mp_modsqrt(mp */*d*/, mp */*a*/, mp */*p*/);
1005
1006 /*----- Test harness support ----------------------------------------------*/
1007
1008 #include <mLib/testrig.h>
1009
1010 #ifndef CATACOMB_MPTEXT_H
1011 # include "mptext.h"
1012 #endif
1013
1014 extern const test_type type_mp;
1015
1016 /*----- That's all, folks -------------------------------------------------*/
1017
1018 #ifdef __cplusplus
1019 }
1020 #endif
1021
1022 #endif