diff options
author | Jack Lloyd <[email protected]> | 2018-03-28 03:57:43 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-03-28 05:13:37 -0400 |
commit | cda33965bcf2ea73c4157ed97c3745ac027fd7c4 (patch) | |
tree | fc4c16416917e045c1ed4fdf7b35bff6bb0d5531 /src/lib/math | |
parent | 5b7cb0d19d7ffe97712c39aaf2f861a2504442aa (diff) |
Fix some Doxygen errors
Diffstat (limited to 'src/lib/math')
-rw-r--r-- | src/lib/math/bigint/bigint.h | 3 | ||||
-rw-r--r-- | src/lib/math/mp/mp_core.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/math/bigint/bigint.h b/src/lib/math/bigint/bigint.h index 3d6626e4d..cb518e727 100644 --- a/src/lib/math/bigint/bigint.h +++ b/src/lib/math/bigint/bigint.h @@ -253,7 +253,8 @@ class BOTAN_PUBLIC_API(2,0) BigInt final /** * Set *this to y - *this - * @param y the BigInt to subtract from + * @param y the BigInt to subtract from as a sequence of words + * @param y_size length of y in words * @param ws a temp workspace */ BigInt& rev_sub(const word y[], size_t y_size, secure_vector<word>& ws); diff --git a/src/lib/math/mp/mp_core.h b/src/lib/math/mp/mp_core.h index 514240197..a2c39bafa 100644 --- a/src/lib/math/mp/mp_core.h +++ b/src/lib/math/mp/mp_core.h @@ -125,6 +125,7 @@ void bigint_linmul3(word z[], const word x[], size_t x_size, word y); * @param p_size size of p * @param p_dash Montgomery value * @param workspace array of at least 2*(p_size+1) words +* @param ws_size size of workspace in words */ void bigint_monty_redc(word z[], const word p[], size_t p_size, |