Skip to content

Commit 057b458

Browse files
authored
Merge pull request #6766 from wernerlewis/bignum_mod_docs
Bignum: document conventions for bignum mod and mod_raw
2 parents 5bf8629 + 6bb49ba commit 057b458

File tree

2 files changed

+102
-0
lines changed

2 files changed

+102
-0
lines changed

library/bignum_mod.h

+57
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,63 @@
22
* Modular bignum functions
33
*
44
* 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).
562
*/
663

764
/*

library/bignum_mod_raw.h

+45
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,51 @@
1111
* the wrong size. The functions in bignum_mod.h provide a higher-level
1212
* interface that includes protections against accidental misuse, at the
1313
* expense of code size and sometimes more cumbersome memory management.
14+
*
15+
* The functions in this module obey the following conventions unless
16+
* explicitly indicated otherwise:
17+
* - **Modulus parameters**: the modulus is passed as a pointer to a structure
18+
* of type #mbedtls_mpi_mod_modulus. The structure must be set up with an
19+
* array of limbs storing the bignum value of the modulus. The modulus must
20+
* be odd and is assumed to have no leading zeroes. The modulus is usually
21+
* named \c N and is usually input-only.
22+
* - **Bignum parameters**: Bignums are passed as pointers to an array of
23+
* limbs. A limb has the type #mbedtls_mpi_uint. Unless otherwise specified:
24+
* - Bignum parameters called \c A, \c B, ... are inputs, and are not
25+
* modified by the function.
26+
* - Bignum parameters called \c X, \c Y are outputs or input-output.
27+
* The initial content of output-only parameters is ignored.
28+
* - \c T is a temporary storage area. The initial content of such a
29+
* parameter is ignored and the final content is unspecified.
30+
* - **Bignum sizes**: bignum sizes are usually expressed by the \c limbs
31+
* member of the modulus argument. All bignum parameters must have the same
32+
* number of limbs as the modulus. All bignum sizes must be at least 1 and
33+
* must be significantly less than #SIZE_MAX. The behavior if a size is 0 is
34+
* undefined.
35+
* - **Bignum representation**: the representation of inputs and outputs is
36+
* specified by the \c int_rep field of the modulus for arithmetic
37+
* functions. Utility functions may allow for different representation.
38+
* - **Parameter ordering**: for bignum parameters, outputs come before inputs.
39+
* The modulus is passed after other bignum input parameters. Temporaries
40+
* come last.
41+
* - **Aliasing**: in general, output bignums may be aliased to one or more
42+
* inputs. Modulus values may not be aliased to any other parameter. Outputs
43+
* may not be aliased to one another. Temporaries may not be aliased to any
44+
* other parameter.
45+
* - **Overlap**: apart from aliasing of limb array pointers (where two
46+
* arguments are equal pointers), overlap is not supported and may result
47+
* in undefined behavior.
48+
* - **Error handling**: This is a low-level module. Functions generally do not
49+
* try to protect against invalid arguments such as nonsensical sizes or
50+
* null pointers. Note that passing bignums with a different size than the
51+
* modulus may lead to buffer overflows. Some functions which allocate
52+
* memory or handle reading/writing of bignums will return an error if
53+
* memory allocation fails or if buffer sizes are invalid.
54+
* - **Modular representatives**: all functions expect inputs to be in the
55+
* range [0, \c N - 1] and guarantee outputs in the range [0, \c N - 1]. If
56+
* an input is out of range, outputs are fully unspecified, though bignum
57+
* values out of range should not cause buffer overflows (beware that this is
58+
* not extensively tested).
1459
*/
1560

1661
/*

0 commit comments

Comments
 (0)