|
2 | 2 | * Modular bignum functions
|
3 | 3 | *
|
4 | 4 | * This module implements operations on integers modulo some fixed modulus.
|
| 5 | + * |
| 6 | + * The functions in this module obey the following conventions unless |
| 7 | + * explicitly indicated otherwise: |
| 8 | + * |
| 9 | + * - **Modulus parameters**: the modulus is passed as a pointer to a structure |
| 10 | + * of type #mbedtls_mpi_mod_modulus. The structure must be set up with an |
| 11 | + * array of limbs storing the bignum value of the modulus. The modulus must |
| 12 | + * be odd and is assumed to have no leading zeroes. The modulus is usually |
| 13 | + * named \c N and is usually input-only. Functions which take a parameter |
| 14 | + * of type \c const #mbedtls_mpi_mod_modulus* must not modify its value. |
| 15 | + * - **Bignum parameters**: Bignums are passed as pointers to an array of |
| 16 | + * limbs or to a #mbedtls_mpi_mod_residue structure. A limb has the type |
| 17 | + * #mbedtls_mpi_uint. Residues must be initialized before use, and must be |
| 18 | + * associated with the modulus \c N. Unless otherwise specified: |
| 19 | + * - Bignum parameters called \c A, \c B, ... are inputs and are not |
| 20 | + * modified by the function. Functions which take a parameter of |
| 21 | + * type \c const #mbedtls_mpi_mod_residue* must not modify its value. |
| 22 | + * - Bignum parameters called \c X, \c Y, ... are outputs or input-output. |
| 23 | + * The initial bignum value of output-only parameters is ignored, but |
| 24 | + * they must be set up and associated with the modulus \c N. Some |
| 25 | + * functions (typically constant-flow) require that the limbs in an |
| 26 | + * output residue are initialized. |
| 27 | + * - Bignum parameters called \c p are inputs used to set up a modulus or |
| 28 | + * residue. These must be pointers to an array of limbs. |
| 29 | + * - \c T is a temporary storage area. The initial content of such a |
| 30 | + * parameter is ignored and the final content is unspecified. |
| 31 | + * - Some functions use different names, such as \c r for the residue. |
| 32 | + * - **Bignum sizes**: bignum sizes are always expressed in limbs. Both |
| 33 | + * #mbedtls_mpi_mod_modulus and #mbedtls_mpi_mod_residue have a \c limbs |
| 34 | + * member storing its size. All bignum parameters must have the same |
| 35 | + * number of limbs as the modulus. All bignum sizes must be at least 1 and |
| 36 | + * must be significantly less than #SIZE_MAX. The behavior if a size is 0 is |
| 37 | + * undefined. |
| 38 | + * - **Bignum representation**: the representation of inputs and outputs is |
| 39 | + * specified by the \c int_rep field of the modulus. |
| 40 | + * - **Parameter ordering**: for bignum parameters, outputs come before inputs. |
| 41 | + * The modulus is passed after residues. Temporaries come last. |
| 42 | + * - **Aliasing**: in general, output bignums may be aliased to one or more |
| 43 | + * inputs. Modulus values may not be aliased to any other parameter. Outputs |
| 44 | + * may not be aliased to one another. Temporaries may not be aliased to any |
| 45 | + * other parameter. |
| 46 | + * - **Overlap**: apart from aliasing of residue pointers (where two residue |
| 47 | + * arguments are equal pointers), overlap is not supported and may result |
| 48 | + * in undefined behavior. |
| 49 | + * - **Error handling**: functions generally check compatibility of input |
| 50 | + * sizes. Most functions will not check that input values are in canonical |
| 51 | + * form (i.e. that \c A < \c N), this is only checked during setup of a |
| 52 | + * residue structure. |
| 53 | + * - **Modular representatives**: all functions expect inputs to be in the |
| 54 | + * range [0, \c N - 1] and guarantee outputs in the range [0, \c N - 1]. |
| 55 | + * Residues are set up with an associated modulus, and operations are only |
| 56 | + * guaranteed to work if the modulus is associated with all residue |
| 57 | + * parameters. If a residue is passed with a modulus other than the one it |
| 58 | + * is associated with, then it may be out of range. If an input is out of |
| 59 | + * range, outputs are fully unspecified, though bignum values out of range |
| 60 | + * should not cause buffer overflows (beware that this is not extensively |
| 61 | + * tested). |
5 | 62 | */
|
6 | 63 |
|
7 | 64 | /*
|
|
0 commit comments