cryb-to/lib/mpi
Dag-Erling Smørgrav 06c2f1280a Add a missing break.
This was harmless as it would either fall through to an empty default statement (if CRYB_COVERAGE was defined) or out of the switch, but it's still bad style.
2017-09-04 21:00:01 +02:00
..
cryb-mpi.pc.in
cryb_mpi.c
cryb_mpi_add.c Slightly improve function descriptions. 2017-04-06 19:51:47 +02:00
cryb_mpi_add_abs.c Fix equality predicates. 2017-04-22 05:32:25 +02:00
cryb_mpi_cmp.c
cryb_mpi_cmp_abs.c
cryb_mpi_cmp_i32.c
cryb_mpi_cmp_i64.c
cryb_mpi_copy.c
cryb_mpi_dec.c Implement fast increment / decrement functions. 2017-04-06 19:52:23 +02:00
cryb_mpi_dec_abs.c Implement fast increment / decrement functions. 2017-04-06 19:52:23 +02:00
cryb_mpi_destroy.c
cryb_mpi_div.c Implement MPI division. 2017-04-06 19:52:23 +02:00
cryb_mpi_div_abs.c Implement MPI division. 2017-04-06 19:52:23 +02:00
cryb_mpi_eq.c Fix equality predicates. 2017-04-22 05:32:25 +02:00
cryb_mpi_eq_abs.c Fix equality predicates. 2017-04-22 05:32:25 +02:00
cryb_mpi_eq_i32.c
cryb_mpi_eq_i64.c
cryb_mpi_gcd_abs.c
cryb_mpi_grow.c
cryb_mpi_impl.h Fix equality predicates. 2017-04-22 05:32:25 +02:00
cryb_mpi_inc.c Implement fast increment / decrement functions. 2017-04-06 19:52:23 +02:00
cryb_mpi_inc_abs.c Implement fast increment / decrement functions. 2017-04-06 19:52:23 +02:00
cryb_mpi_init.c
cryb_mpi_load.c Add a missing break. 2017-09-04 21:00:01 +02:00
cryb_mpi_lsb.c
cryb_mpi_lshift.c Correct function descriptions. 2017-04-06 19:52:23 +02:00
cryb_mpi_msb.c
cryb_mpi_mul.c Implement MPI multiplication. 2017-04-06 19:52:23 +02:00
cryb_mpi_mul_abs.c Fix equality predicates. 2017-04-22 05:32:25 +02:00
cryb_mpi_negate.c
cryb_mpi_rshift.c Correct function descriptions. 2017-04-06 19:52:23 +02:00
cryb_mpi_set.c
cryb_mpi_sub.c Slightly improve function descriptions. 2017-04-06 19:51:47 +02:00
cryb_mpi_sub_abs.c Fix equality predicates. 2017-04-22 05:32:25 +02:00
cryb_mpi_swap.c
cryb_mpi_zero.c
Makefile.am Implement MPI division. 2017-04-06 19:52:23 +02:00
README

Portable multiple-precision integer library.

The interface is loosely based on XySSL's MPI library.  The
implementation was written from scratch based on the algorithms
described in Menezes, van Oorschot and Vanstone: _Handbook of Applied
Cryptography_, CRC Press, 1996.  The full text of the HAC is available
for personal use at http://www.cacr.math.uwaterloo.ca/hac/.

This implementation sacrifices performance for portability and
readability, but attempts have been made to structure it in such a way
that critical portions can easily be replaced with machine-dependent
optimized versions.

The code assumes a 64-bit machine or a 32-bit machine where 64-bit
integer arithmetic is supported but not necessarily efficient; 64-bit
operations are used only to simplify overflow handling.